/src/css/freebase-controls.css
CSS | 205 lines | 171 code | 32 blank | 2 comment | 0 complexity | a0ba5f679bc6064ffca0e9c4c469918f MD5 | raw file
1 2.fbs-enumcontrol { 3 background: #ffffff url(down-arrow.gif) no-repeat center right; 4 padding-right:12px; 5} 6 7.fbs-topshadow { 8/* font-family: Arial, Helvetica, sans-serif; */ 9 margin: -8px 0px 0px -4px; 10 padding:0; 11 display:block; 12 z-index:1000; 13 position:absolute; 14 background: url('shadow-top-left.png') no-repeat top left; 15} 16 17.fbs-bottomshadow { 18 position: relative; 19 right: -4px; 20 bottom: -4px; 21 padding: 0px 4px 4px 0px; 22 background: url('shadow-bottom-right.png') no-repeat bottom right; 23} 24* html .fbs-bottomshadow, 25* html .fbs-topshadow { 26 background:none; 27} 28 29.fbs-flyout-container, 30.fbs-ul { 31 margin: 0px; 32 padding: 2px 0px 0px 0px; 33 text-align: left; 34 list-style:none; 35 border: 1px solid #808080; 36 background-color: #ffffff; 37 /* font-size: .9em;*/ 38 filter:alpha(opacity=95); 39 -moz-opacity:.95; 40 opacity:.95; 41 overflow: auto; 42 overflow-x: hidden 43} 44 45.fbs-ul { 46 max-height: 300px; 47} 48 49* html .fbs-ul { 50 height: expression( this.scrollHeight > 300 ? "300" : "auto" ); /* sets max-height for IE */ 51} 52 53 54.fbs-li { 55 padding: 3px 2px 3px 4px; 56 margin: 0px; 57 font-size: .9em; 58} 59 60.fbs-li-aliases, 61.fbs-li-types, 62.fbs-li-domains, 63.fbs-li-name, 64.fbs-li-props { 65 _width : 253px !important; /* TODO Move to conditional comments */ 66 overflow: hidden; 67 white-space:nowrap; 68 text-overflow:ellipsis; 69 display:block; 70} 71 72.fbs-li-types, 73.fbs-li-domains { 74 color: #5d5d5d; 75 font-size: .9em; 76 font-style: italic; 77} 78 79.fbs-li-aliases { 80 float: right; 81 max-width: 40%; 82 vertical-align:bottom; 83} 84 85* html .fbs-li-name{ 86 width: 100%; 87} 88 89* html .fbs-li-aliases { 90 display:none; 91} 92 93.fbs-li-aliases:before { 94 content:'...'; 95} 96 97.fbs-li-props { 98 font-size: .9em; 99 color: #555; 100} 101 102.fbs-li-nomatch { 103 font-style: italic; 104} 105 106.fbs-selectnew { 107 color: #383838; 108 border: 1px solid #c5c5c5; 109 border-top: 1px solid #fff; 110 background-color: #f3f3f3; 111 font-size: .9em; 112 margin: 0px; 113 padding: .4em .3em .5em; 114 filter:alpha(opacity=90); 115 -moz-opacity:.90; 116 opacity:.90; 117} 118 119.fbs-selectnew-button { 120 cursor: pointer; 121 background: url(button_bkd.gif) bottom left repeat-x white; 122 border: 1px solid #9a9a9a; 123 padding: .2em .3em; 124 margin-left: 0px !important; 125 max-width: 17em; 126} 127 128 129.fbs-selectnew-button:hover { 130 text-decoration: none; 131} 132 133.fbs-selectnew-description { 134 margin-bottom: .6em; 135} 136 137.fbs-selectnew-shortcut { 138 font-size: .9em; 139 color: #535353; 140 margin-left: .4em; 141} 142 143.fbs-li-selected { 144 background-color:#97bedf; 145 color: #000000; 146} 147 148.fbs-em { 149 font-style: normal; 150 font-weight: bold; 151} 152 153.fbs-flyout-container { 154 padding: 2px .45em 2px 14px; 155 min-height: 1em; 156} 157 158* html .fbs-flyout-container { 159 height: 1%; 160} 161 162.fbs-flyout-name, 163.fbs-flyout-blurb { 164 font-size: .9em; 165 padding: .3em 0px .1em; 166 line-height: 130%; 167 margin-bottom: .5em; 168} 169 170.fbs-flyout-types, 171.fbs-flyout-domains { 172 font-size: .85em; 173 padding: 0; 174 margin:.3em 0 .3em 0 !important; 175 font-weight:normal !important; 176 font-style: italic; 177 color: #9a9a9a; 178} 179 180.fbs-flyout-image { 181 float:left; 182 width:auto; 183 margin-right: .3em; 184 padding: 3px; 185} 186 187.fbs-flyout-image img { 188 vertical-align: middle; 189 padding: 3px; 190 border: 1px solid #c8c8c3; 191 background-color: #fff; 192} 193 194 195.fbs-flyout-name a { 196 color: #006EE9; 197 text-decoration:none; 198} 199.fbs-flyout-name a:hover { 200 color: #006EE9; 201 text-decoration:underline; 202} 203.fbs-flyout-name a:visited { 204 color:#800080; 205}