balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

osm.css (1026B)


      1 .rwmb-osm-canvas {
      2 	width: 100%;
      3 	height: 400px;
      4 	margin-bottom: 10px;
      5 }
      6 
      7 /* Autocomplete style, copy from WordPress's common.css and forms.css */
      8 
      9 input.ui-autocomplete-input.open {
     10 	border-bottom-color: transparent;
     11 }
     12 
     13 .ui-autocomplete {
     14 	padding: 0;
     15 	margin: 0;
     16 	list-style: none;
     17 	position: absolute;
     18 	z-index: 10000;
     19 	border: 1px solid #5b9dd9;
     20 	box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
     21 	background-color: #fff;
     22 }
     23 
     24 .ui-autocomplete li {
     25 	margin-bottom: 0;
     26 	padding: 4px 10px;
     27 	white-space: nowrap;
     28 	text-align: left;
     29 	cursor: pointer;
     30 }
     31 
     32 /* Colors for the wplink toolbar autocomplete. */
     33 .ui-autocomplete .ui-state-focus {
     34 	background-color: #ddd;
     35 }
     36 
     37 .ui-helper-hidden-accessible {
     38 	border: 0;
     39 	clip: rect(1px, 1px, 1px, 1px);
     40 	-webkit-clip-path: inset(50%);
     41 	clip-path: inset(50%);
     42 	height: 1px;
     43 	margin: -1px;
     44 	overflow: hidden;
     45 	padding: 0;
     46 	position: absolute;
     47 	width: 1px;
     48 	word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */
     49 }