Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * lib/css/legacy/body.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 4 | */ |
| 5 | html { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 6 | margin: 0px; |
| 7 | padding: 0px; |
| 8 | } |
| 9 | |
| 10 | body { |
| 11 | margin: 0px; |
| 12 | padding: 0px; |
| 13 | font-family: Arial, Helvetica, Sans; |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 14 | font-size: 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 15 | color: #000; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 16 | background-color: #e2e2e2; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 17 | } |
| 18 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 19 | pre { margin: 0px; padding: 0px; } |
| 20 | |
| 21 | button { margin: 2px; margin-left: 0px; } |
| 22 | |
| 23 | label { |
| 24 | padding-top: 15px; |
| 25 | color: #404040; |
| 26 | } |
| 27 | |
| 28 | select, input, textarea { |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 29 | border: 1px solid #ccc; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 30 | -moz-border-radius: 4px; |
| 31 | -webkit-border-radius: 4px; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 32 | font-size: inherit; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 33 | padding: 4px; |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 34 | color: #444; |
| 35 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 36 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
| 37 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | textarea { |
| 41 | font-family: inherit; |
| 42 | height: 120px; |
| 43 | width: 90%; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 44 | font-size: inherit; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 45 | white-space: normal; |
| 46 | } |
| 47 | |
| 48 | table { padding: 0px; border-collapse: 'collapse'} |
| 49 | |
| 50 | td { |
| 51 | padding:0px; |
| 52 | margin: 0px; |
| 53 | vertical-align: top; |
| 54 | } |
| 55 | |
| 56 | p { |
| 57 | margin: 0px 0px 9px 0px; |
| 58 | line-height: 1.5em; |
| 59 | } |
| 60 | |
| 61 | li { |
| 62 | line-height: 1.5em; |
| 63 | } |
| 64 | |
Rushabh Mehta | aa848be | 2012-02-17 12:06:33 +0530 | [diff] [blame] | 65 | hr { |
| 66 | margin: 18px 0; |
| 67 | border: 0; |
| 68 | border-top: 1px solid #e5e5e5; |
| 69 | border-bottom: 1px solid #ffffff; |
| 70 | } |
| 71 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 72 | /* links */ |
| 73 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 74 | a:active { outline:none; } |
| 75 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 76 | a { |
| 77 | color: #0088cc; |
| 78 | text-decoration: none; |
| 79 | } |
| 80 | a:hover { |
| 81 | color: #005580; |
| 82 | text-decoration: underline; |
| 83 | } |
| 84 | |
| 85 | .link_type { |
| 86 | padding:2px; |
| 87 | color: #0088cc; |
| 88 | cursor: pointer; |
| 89 | } |
| 90 | |
| 91 | .link_type:hover { |
| 92 | color: #005580; |
| 93 | text-decoration: underline; |
| 94 | } |
| 95 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 96 | :focus { -moz-outline-style:none; } |
| 97 | |
| 98 | table.simpletable { border-collapse: collapse; margin-bottom: 10px;} |
| 99 | table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; } |
| 100 | |
| 101 | div.fix_ff_cursor { overflow: auto; } |
| 102 | |
| 103 | /* --- Layout --- */ |
| 104 | |
| 105 | div.comment { color: #444; } |
| 106 | |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 107 | .small { |
| 108 | font-size: 11px; |
| 109 | } |
| 110 | |
| 111 | .help { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 112 | margin-bottom: 3px; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 113 | color: #888; |
| 114 | } |
| 115 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 116 | div#body_div { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 117 | display: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 118 | padding-right: 7px; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 119 | width: 900px; |
| 120 | margin: auto; |
| 121 | margin-top: 56px; |
| 122 | } |
| 123 | |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 124 | .content { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 125 | width: 900px; |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | .background-fade-in { |
| 129 | -webkit-transition: background 1s ease-in; /* property duration timing-function delay */ |
| 130 | -moz-transition: background 1s ease-in; |
| 131 | -o-transition: background 1s ease-in; |
| 132 | transition: background 1s ease-in; |
| 133 | } |
| 134 | |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 135 | footer { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 136 | width: 900px; |
| 137 | margin: auto; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 138 | } |
| 139 | header .container { |
| 140 | width: 900px; |
| 141 | margin: auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 142 | } |
| 143 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 144 | @media (max-width: 1200px) { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 145 | div#body_div, header .container, .content, #opened-page-selector, footer { |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 146 | width: 900px; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | @media (min-width: 1200px) { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 151 | div#body_div, header .container, .content, #opened-page-selector, footer { |
| 152 | width: 1100px; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 153 | } |
| 154 | } |
| 155 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 156 | div.no_script { |
| 157 | display: none; |
| 158 | } |
| 159 | |
| 160 | div.loading_div { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 161 | background-color: #FFFFCC; |
| 162 | z-index: 1999; |
| 163 | right: 5px; |
| 164 | width: 90px; |
| 165 | display: none; |
| 166 | text-align: center; |
| 167 | padding: 2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 168 | border: 1px solid #FF4; |
| 169 | } |
| 170 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 171 | div.std-footer { |
| 172 | margin: 13px 0px; |
| 173 | border-top: 1px solid #AAA; |
| 174 | padding: 13px; |
| 175 | } |
| 176 | |
| 177 | div.std-footer-item { |
| 178 | margin: 0px 13px 13px 0px; |
| 179 | } |
| 180 | |
| 181 | .shadow { |
| 182 | -moz-box-shadow: 0px 2px 2px #888; |
| 183 | -webkit-box-shadow: 0px 2px 2px #888; |
| 184 | box-shadow: 0px 2px 2px #888; |
| 185 | } |
| 186 | |
| 187 | .round { |
| 188 | -webkit-border-radius: 5px; |
| 189 | -moz-border-radius: 5px; |
| 190 | border-radius: 5px; |
| 191 | } |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 192 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 193 | .layout_wrapper, .layout-wrapper { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 194 | -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
| 195 | -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
| 196 | box-shadow: 0px 0px 6px rgba(0,0,0,0.3); |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 197 | background-color: #fff; |
| 198 | padding: 15px; |
| 199 | } |
| 200 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 201 | .layout-wrapper-background { |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 202 | background-color: #fafafa !important; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 203 | padding: 0px; |
| 204 | } |
| 205 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 206 | .layout-main-section { |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 207 | width: 71%; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 208 | float: left; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 209 | padding: 15px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 210 | background-color: #FFF; |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 211 | min-height: 600px; |
Rushabh Mehta | fdea966 | 2012-02-27 18:03:54 +0530 | [diff] [blame] | 212 | -moz-box-shadow: 7px 0px 6px -2px #ddd; |
| 213 | -webkit-box-shadow: 7px 0px 6px -2px #ddd; |
| 214 | box-shadow: 7px 0px 6px -2px #ddd; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | .layout-side-section { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 218 | width: 22%; |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 219 | /*float: right;*/ |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 220 | color: #606060; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 221 | overflow-x: hidden; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 222 | padding: 15px; |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 223 | min-height: 600px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /* from bootstrap */ |
| 227 | .container { |
| 228 | margin-left: auto; |
| 229 | margin-right: auto; |
| 230 | zoom: 1; |
| 231 | } |
| 232 | .container:before, .container:after { |
| 233 | display: table; |
| 234 | content: ""; |
| 235 | zoom: 1; |
| 236 | } |
| 237 | .container:after { |
| 238 | clear: both; |
| 239 | } |
| 240 | |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 241 | .well { |
| 242 | min-height: 20px; |
| 243 | padding: 19px; |
| 244 | margin-bottom: 20px; |
| 245 | background-color: #f5f5f5; |
| 246 | border: 1px solid #eee; |
| 247 | border: 1px solid rgba(0, 0, 0, 0.05); |
| 248 | -webkit-border-radius: 4px; |
| 249 | -moz-border-radius: 4px; |
| 250 | border-radius: 4px; |
| 251 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 252 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 253 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 254 | } |
| 255 | |
Rushabh Mehta | df33cb3 | 2012-03-01 13:44:09 +0530 | [diff] [blame] | 256 | .avatar-small { |
| 257 | display: inline-block; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 258 | width: 24px; |
| 259 | height: 20px; |
| 260 | vertical-align: middle; |
| 261 | overflow: hidden; |
| 262 | margin: 0px 3px; |
Rushabh Mehta | df33cb3 | 2012-03-01 13:44:09 +0530 | [diff] [blame] | 263 | } |
| 264 | .avatar-small img { |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 265 | width: 24px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 266 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 267 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 268 | /* |
| 269 | * lib/css/legacy/messages.css |
| 270 | */ |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 271 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 272 | /* FLOATING MESSAGE */ |
| 273 | |
| 274 | .btn-img { cursor: pointer; } |
| 275 | |
| 276 | div.fetching { color: #888; text-align:right; } |
| 277 | |
| 278 | div.notice { |
| 279 | postion: absolute; |
| 280 | background-color: #000; |
| 281 | -moz-border-radius: 5px; -webkit-border-radius: 5px; |
| 282 | opacity: 0.6; |
| 283 | right: 0; |
| 284 | top: 0; |
| 285 | margin-top: 8px; |
| 286 | z-index: -1; |
| 287 | padding: 8px; |
| 288 | } |
| 289 | |
| 290 | /** help **/ |
| 291 | |
| 292 | .info-box { |
| 293 | background-color: #F8F8F8; |
| 294 | border: 1px solid #CCCCCC; |
| 295 | border-radius: 3px 3px 3px 3px; |
| 296 | line-height: 1.6em; |
| 297 | overflow: auto; |
| 298 | padding: 6px 10px; |
| 299 | margin-bottom: 9px; |
| 300 | } |
| 301 | |
| 302 | .help_box, .help-box { |
| 303 | background-color:#FFC; |
| 304 | font-size: 13px; |
| 305 | color: #864; |
| 306 | padding: 7px; |
| 307 | margin: 11px 0px; |
| 308 | border: 1px solid #EEB; |
| 309 | } |
| 310 | |
| 311 | .help_box_big { |
| 312 | background-color:#FFC; |
| 313 | color: #864; |
| 314 | padding: 7px; |
| 315 | margin: 7px 0px; |
| 316 | border: 1px solid #EEB; |
| 317 | text-align: center; |
| 318 | font-size: 14px; |
| 319 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 320 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 321 | /* |
| 322 | * lib/css/legacy/forms.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 323 | */ |
| 324 | /* FORMS */ |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 325 | |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 326 | .breadcrumbs-area { |
| 327 | margin-bottom: 8px; |
| 328 | } |
| 329 | |
| 330 | .breadcrumbs { |
| 331 | background-color: #e8e8e8; |
| 332 | padding: 3px; |
| 333 | border-radius: 3px; |
| 334 | } |
| 335 | |
| 336 | .breadcrumbs a { |
| 337 | color: #000000; |
| 338 | } |
| 339 | |
Rushabh Mehta | 052b7e4 | 2012-03-13 15:19:06 +0530 | [diff] [blame] | 340 | div.form-section-head { |
Rushabh Mehta | 38474e2 | 2012-03-13 16:11:52 +0530 | [diff] [blame] | 341 | margin: 11px 0px 3px 0px; |
| 342 | border-top: 1px solid #ccc; |
| 343 | padding-top: 11px; |
| 344 | } |
| 345 | |
| 346 | div.form-layout-row:first-child .form-section-head { |
| 347 | border-top: 0px solid #ccc !important; |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 348 | } |
| 349 | |
Rushabh Mehta | 052b7e4 | 2012-03-13 15:19:06 +0530 | [diff] [blame] | 350 | div.form-section-head h3 { |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 351 | line-height: 20px; |
| 352 | } |
| 353 | |
Rushabh Mehta | 052b7e4 | 2012-03-13 15:19:06 +0530 | [diff] [blame] | 354 | div.form-section-head hr { |
Rushabh Mehta | b9878d0 | 2012-03-12 16:12:09 +0530 | [diff] [blame] | 355 | margin: 9px 0px; |
| 356 | } |
| 357 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 358 | |
| 359 | div.frm_print_wrapper { |
| 360 | background-color:#FFF; |
| 361 | border:1px solid #444; |
| 362 | padding: 40px; |
| 363 | |
| 364 | box-shadow:1px 1px 8px #229; |
| 365 | -moz-box-shadow: 1px 1px 8px #229; |
| 366 | -webkit-box-shadow: 1px 1px 8px #229; |
| 367 | } |
| 368 | |
| 369 | div.page_break { |
| 370 | margin: 24px 0px; |
| 371 | border-top: 1px dashed #888; |
| 372 | } |
| 373 | |
| 374 | div.grid_tbarlinks { |
| 375 | border-bottom: 0px; |
| 376 | background-color: #CCC; |
| 377 | padding: 4px 4px 2px 4px; |
Rushabh Mehta | a2713f8 | 2012-02-17 14:04:55 +0530 | [diff] [blame] | 378 | width: 190px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 379 | float: right; |
| 380 | |
| 381 | -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; |
| 382 | -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; |
| 383 | } |
| 384 | |
| 385 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 386 | div.dialog_frm { |
| 387 | position: relative; |
| 388 | margin: 10px; |
| 389 | } |
| 390 | |
| 391 | |
| 392 | |
| 393 | /*------------------*/ |
| 394 | |
| 395 | .top_cell { |
| 396 | height: 50px; |
| 397 | } |
| 398 | |
| 399 | div.attach_area { |
| 400 | padding: 8px; |
| 401 | margin: 8px; |
| 402 | background-color: #EEE; |
| 403 | } |
| 404 | |
| 405 | div.attach_area table { |
| 406 | width: 100%; |
| 407 | } |
| 408 | |
| 409 | .tablabel_normal { |
| 410 | margin: 0 4px 0 0; |
| 411 | padding: 3px 5px; |
| 412 | line-height: 1.3em; |
| 413 | display: inline; |
| 414 | cursor: pointer; |
| 415 | } |
| 416 | |
| 417 | .tablabel_selected { |
| 418 | margin: 0 4px 0 0; |
| 419 | padding: 3px 5px; |
| 420 | line-height: 1.3em; |
| 421 | font-weight: bold; |
| 422 | display: inline; |
| 423 | cursor: pointer; |
| 424 | color: #000; |
| 425 | } |
| 426 | |
| 427 | .scrollhead_wrapper { |
| 428 | position: absolute; |
| 429 | z-index: 1; |
| 430 | height: 30px; |
| 431 | } |
| 432 | |
| 433 | .treeimg { |
| 434 | cursor: pointer; |
| 435 | margin-right: 3px; |
| 436 | } |
| 437 | |
| 438 | |
| 439 | .sectionCell { |
| 440 | padding: 5px; |
| 441 | vertical-align: top; |
| 442 | } |
| 443 | |
| 444 | .code_area { |
| 445 | width: 80%; |
| 446 | margin: 8px; |
| 447 | padding: 4px; |
| 448 | background-color: #F8F8F8; |
| 449 | border: 1px solid #CCC; |
| 450 | overflow-x: auto; |
| 451 | } |
| 452 | |
| 453 | .code_text { |
| 454 | width: 100%; |
| 455 | height: 360px; |
| 456 | margin-top: 3px; |
| 457 | font-family: Courier, Fixed; |
| 458 | font-size: 12px; |
| 459 | } |
| 460 | |
| 461 | div.time_field select{ |
| 462 | display: inline; |
| 463 | margin: 2px; |
| 464 | width: 45px; |
| 465 | } |
| 466 | |
| 467 | /* Documents */ |
| 468 | |
| 469 | .frm_field_table { |
| 470 | width: 100%; |
| 471 | border-collapse: collapse; |
| 472 | } |
| 473 | |
| 474 | .datalabelcell { |
| 475 | padding: 2px 0px; |
| 476 | width: 160px; |
| 477 | vertical-align: top; |
| 478 | } |
| 479 | .datainputcell { padding: 2px 0px; } |
| 480 | |
| 481 | |
Rushabh Mehta | 052b7e4 | 2012-03-13 15:19:06 +0530 | [diff] [blame] | 482 | .help ol { |
| 483 | padding-left: 19px; |
| 484 | } |
| 485 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 486 | .field_description_top { |
| 487 | margin-bottom: 3px; |
| 488 | } |
| 489 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 490 | .input_area input, select, textarea { |
| 491 | font-size: 14px; |
| 492 | padding: 2px; |
| 493 | } |
| 494 | |
| 495 | .input_area input { |
| 496 | width: 80%; |
| 497 | margin: 0px; |
| 498 | } |
| 499 | .input_area select { |
| 500 | width: 80%; |
| 501 | } |
| 502 | .input_area textarea { |
| 503 | width: 90%; |
| 504 | } |
| 505 | |
| 506 | .disp_area { |
| 507 | width: 80%; |
| 508 | padding: 2px 0px; |
| 509 | font-size: 12px; |
| 510 | } |
| 511 | .disp_area_no_val { |
| 512 | height: 14px; |
| 513 | } |
| 514 | |
| 515 | .no_img { |
| 516 | padding: 40px; |
| 517 | width: 100px; |
| 518 | height: 20px; |
| 519 | color: #888; |
| 520 | text-align: center; |
| 521 | border: 1px solid #AAA; |
| 522 | } |
| 523 | |
| 524 | .input-mandatory { |
| 525 | font-size: 14px !important; |
| 526 | font-weight: bold; |
| 527 | } |
| 528 | |
| 529 | .field-to-update { |
| 530 | background-color:#FEE; |
| 531 | } |
| 532 | |
| 533 | /* sidebar */ |
| 534 | |
| 535 | div.sidebar-comment-wrapper input { |
| 536 | width: 50%; |
| 537 | } |
| 538 | div.sidebar-comment-message { |
| 539 | margin-top: 8px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 540 | color: #777; |
| 541 | } |
| 542 | |
| 543 | div.sidebar-comment-text { |
| 544 | font-size: 12px; |
| 545 | font-weight: bold; |
| 546 | margin-top: 8px; |
| 547 | color: #444; |
| 548 | } |
| 549 | div.sidebar-comment-info { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 550 | color: #777; |
| 551 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 552 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 553 | /* |
| 554 | * lib/css/legacy/grid.css |
| 555 | */ |
| 556 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 557 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 558 | /* Grid */ |
| 559 | |
| 560 | |
| 561 | /* --- Simple --- */ |
| 562 | .grid_wrapper_simple { |
| 563 | width: 100%; |
| 564 | margin-bottom: 8px; |
| 565 | border: 1px solid #AA9; |
| 566 | } |
| 567 | |
| 568 | .grid_head_wrapper_simple { |
| 569 | padding: 0px; |
| 570 | border-bottom: 2px solid #AAA; |
| 571 | } |
| 572 | |
| 573 | .grid_head_wrapper_simple td { |
| 574 | border-right: 1px solid #AA9; |
| 575 | } |
| 576 | |
| 577 | .grid_head_wrapper_simple td div { |
| 578 | padding: 2px; |
| 579 | } |
| 580 | |
| 581 | .grid_tab_wrapper_simple { |
| 582 | } |
| 583 | |
| 584 | .grid_cell_simple { |
| 585 | padding: 2px; |
| 586 | background-color: #fff; |
| 587 | border-right: 1px solid #AA9; |
| 588 | } |
| 589 | |
| 590 | |
| 591 | /* --- Normal --- */ |
| 592 | .grid_wrapper { |
| 593 | position: relative; |
| 594 | overflow: auto; |
| 595 | border: 1px solid #AAA; |
| 596 | width: 100%; |
| 597 | margin-bottom: 8px; |
| 598 | background-color: #fff; |
| 599 | } |
| 600 | |
| 601 | .grid_tab_wrapper { |
| 602 | position: absolute; |
| 603 | top: 40px; |
| 604 | border-bottom: 1px solid #DDD; |
| 605 | } |
| 606 | |
| 607 | .grid_table, .grid_head_table { |
| 608 | table-layout: fixed; |
| 609 | border-collapse: collapse; |
| 610 | /*width: 100%;*/ |
| 611 | } |
| 612 | |
| 613 | .grid_cell { |
| 614 | border-right: 1px solid #ddd; |
| 615 | padding: 0px; |
| 616 | background-color: #fff; |
| 617 | } |
| 618 | |
| 619 | .grid_head_wrapper { |
| 620 | position: absolute; |
| 621 | z-index: 1; |
| 622 | height: 40px; |
| 623 | padding: 0px; |
| 624 | overflow: hidden; |
| 625 | /*background-color: #fff;*/ |
| 626 | } |
| 627 | |
| 628 | .grid_head_table td { |
| 629 | background-color: #EEE; |
| 630 | border-right: 1px solid #AAA; |
| 631 | border-bottom: 1px solid #AAA; |
| 632 | height: 40px; |
| 633 | padding: 0px; |
| 634 | } |
| 635 | |
| 636 | .grid_head_table td div { |
| 637 | color: #222; |
| 638 | font-weight: bold; |
| 639 | overflow: hidden; |
| 640 | padding: 2px 0px; |
| 641 | text-align: center; |
| 642 | } |
| 643 | |
| 644 | .grid_selector { |
| 645 | padding: 1px; |
| 646 | border-right: 1px solid #DDD; |
| 647 | width: 20px; |
| 648 | background-color: #fff; |
| 649 | } |
| 650 | |
| 651 | .grid_cell_div { |
| 652 | padding: 2px; |
| 653 | cursor: pointer; |
| 654 | overflow: hidden; |
| 655 | border: 2px solid #FFF; |
| 656 | } |
| 657 | |
| 658 | .grid_cell_div_selected { |
| 659 | border: 2px solid #88f; |
| 660 | } |
| 661 | |
| 662 | .grid_cell_div input, .grid_cell_div select, .grid_cell_div div input { |
| 663 | margin: 0px; |
| 664 | border: 0px; |
| 665 | width: 100%; |
| 666 | margin: 0px; |
| 667 | } |
| 668 | |
| 669 | .grid_cell_div textarea { |
| 670 | border: 3px solid #abf; |
| 671 | height:200px; |
| 672 | width: 300px; |
| 673 | z-index: 10; |
| 674 | position:absolute; |
| 675 | } |
| 676 | |
| 677 | .gridDivSelected option { border: 0px; } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 678 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 679 | /* |
| 680 | * lib/css/legacy/listing.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 681 | */ |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 682 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 683 | |
| 684 | /* SRS */ |
| 685 | |
| 686 | table.srs_result_tab { |
| 687 | border: 2px solid #AAA; |
| 688 | border-collapse: collapse; |
| 689 | } |
| 690 | |
| 691 | /* firefox bug fix for disappering borders */ |
| 692 | table.srs_result_tab td, table.srs_result_tab tr, table.srs_result_tab tbody, table.srs_result_tab div { |
| 693 | position: static; |
| 694 | } |
| 695 | |
| 696 | table.srs_result_tab td { |
| 697 | padding: 3px 2px; |
| 698 | position: static; |
| 699 | } |
| 700 | |
| 701 | div.srs_body_area { |
| 702 | } |
| 703 | |
| 704 | div.srs_results_area { |
| 705 | } |
| 706 | |
| 707 | div.srs_filter_wrapper { |
| 708 | border: 1px solid #CCF; |
| 709 | |
| 710 | background-color: #EEF; |
| 711 | margin:0px 0px 8px 0px; |
| 712 | |
| 713 | -moz-border-radius: 5px; |
| 714 | -webkit-border-radius: 5px; |
| 715 | border-radius: 5px; |
| 716 | } |
| 717 | |
| 718 | div.srs_filter_area { |
| 719 | padding: 8px; |
| 720 | } |
| 721 | |
| 722 | div.srs_filter_area td { |
| 723 | vertical-align: middle; |
| 724 | } |
| 725 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 726 | /* |
| 727 | * lib/css/legacy/report.css |
| 728 | */ |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 729 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 730 | /* Reports */ |
| 731 | |
| 732 | div.report_grid_area { |
| 733 | position: relative; |
| 734 | padding: 8px; |
| 735 | } |
| 736 | |
| 737 | |
| 738 | div.report_tab { |
| 739 | border: 1px solid #AAA; |
| 740 | position: relative; |
| 741 | overflow: auto; |
| 742 | } |
| 743 | |
| 744 | div.report_no_data { |
| 745 | padding: 8px; |
| 746 | background-color: #EEE; |
| 747 | border: 1px solid #DDD; |
| 748 | position: absolute; |
| 749 | margin-left: 40%; |
| 750 | margin-top: 50px; |
| 751 | display: none; |
| 752 | } |
| 753 | |
| 754 | div.report_htitle { |
| 755 | float: left; |
| 756 | padding: 2px; |
| 757 | font-size: 14px; |
| 758 | font-weight: bold; |
| 759 | margin-left: 4px; |
| 760 | color: #665; |
| 761 | /*font-weight: bold;*/ |
| 762 | } |
| 763 | |
| 764 | div.report_tbar { |
| 765 | background-color: #EEF; |
| 766 | border: 1px solid #CCF; |
| 767 | border-bottom: 0px; |
| 768 | height: 28px; |
| 769 | } |
| 770 | |
| 771 | div.report_tbar table{ |
| 772 | width: 100%; |
| 773 | } |
| 774 | div.report_tbar table td { |
| 775 | |
| 776 | } |
| 777 | div.report_tbar table td div { |
| 778 | position: relative; |
| 779 | } |
| 780 | div.report_tbar button, div.report_tbar select, div.report_tbar img { |
| 781 | font-size: 11px; |
| 782 | margin: 0px; |
| 783 | } |
| 784 | |
| 785 | div.report_head_wrapper { |
| 786 | position: absolute; |
| 787 | height: 24px; |
| 788 | top: 0px; |
| 789 | z-index: 1; |
| 790 | } |
| 791 | |
| 792 | div.report_tab_wrapper { |
| 793 | position: absolute; |
| 794 | border-bottom: 1px solid #AAA; |
| 795 | border-top: 1px solid #AAA; |
| 796 | } |
| 797 | |
| 798 | div.report_tab_wrapper table, div.report_head_wrapper table { |
| 799 | table-layout: fixed; |
| 800 | border-collapse: collapse; |
| 801 | /*width: 100%;*/ |
| 802 | } |
| 803 | |
| 804 | div.report_tab_wrapper table td, div.report_head_wrapper table td { |
| 805 | border-left: 1px solid #AAA; |
| 806 | border-right: 1px solid #AAA; |
| 807 | border-bottom: 1px solid #AAA; |
| 808 | overflow: hidden; |
| 809 | padding: 0px; |
| 810 | } |
| 811 | |
| 812 | div.report_tab_wrapper table td div, div.report_head_wrapper table td div { |
| 813 | padding: 3px; |
| 814 | overflow: hidden; |
| 815 | } |
| 816 | |
| 817 | .report_head_cell { |
| 818 | background-color: #EEE; |
| 819 | border-bottom: 1px solid #AA9; |
| 820 | text-align: center; |
| 821 | font-weight: bold; |
| 822 | } |
| 823 | .report_head_cell div { |
| 824 | color:#222; |
| 825 | height: 18px; |
| 826 | } |
| 827 | |
| 828 | |
| 829 | /* FINDER */ |
| 830 | |
| 831 | div.finder_wrapper { |
| 832 | } |
| 833 | |
| 834 | div.finder_body_area { |
| 835 | margin: 16px; |
| 836 | } |
| 837 | |
| 838 | div.finder_body { |
| 839 | display: none; |
| 840 | } |
| 841 | |
| 842 | div.finder_advanced_area table { |
| 843 | width: 80%; |
| 844 | } |
| 845 | |
| 846 | div.finder_advanced_area textarea { |
| 847 | width: 80%; |
| 848 | } |
| 849 | |
| 850 | div.finder_filter_area { |
| 851 | position: relative; |
| 852 | } |
| 853 | |
| 854 | div.filter_head { |
| 855 | font-size: 14px; |
| 856 | margin-bottom: 2px; |
| 857 | } |
| 858 | div.filter_dt_head { |
| 859 | font-size: 14px; |
| 860 | font-weight: bold; |
| 861 | margin-bottom: 2px; |
| 862 | } |
| 863 | table.filter_tab { |
| 864 | width: 96%; |
| 865 | border-collapse: collapse; |
| 866 | } |
| 867 | |
| 868 | table.filter_tab td { |
| 869 | width: 50%; |
| 870 | } |
| 871 | |
| 872 | div.finder_picker_area { |
| 873 | |
| 874 | } |
| 875 | div.builder_field { |
| 876 | margin: 0px; |
| 877 | } |
| 878 | div.builder_dt_head { |
| 879 | font-size: 14px; |
| 880 | font-weight: bold; |
| 881 | margin-bottom: 2px; |
| 882 | } |
| 883 | |
| 884 | div.builder_field table { |
| 885 | width: 90%; |
| 886 | border-collapse: collapse; |
| 887 | } |
| 888 | |
| 889 | div.builder_label { |
| 890 | height: 20px; |
| 891 | } |
| 892 | |
| 893 | div.builder_head { |
| 894 | font-size: 16px; |
| 895 | font-weight: bold; |
| 896 | color: #AB6; |
| 897 | } |
| 898 | |
| 899 | table.builder_tab { |
| 900 | width: 96%; |
| 901 | border-collapse: collapse; |
| 902 | } |
| 903 | |
| 904 | table.builder_tab td { |
| 905 | width: 33%; |
| 906 | padding: 2px; |
| 907 | } |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * lib/css/legacy/dialog.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 911 | */ |
| 912 | /***** Dialogs *******/ |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 913 | |
| 914 | div.dialog_wrapper { |
| 915 | position: absolute; |
| 916 | width: 440px; |
| 917 | display: none; |
| 918 | z-index: 90; |
| 919 | background-color: #FFF; |
| 920 | border: 3px solid #222; |
| 921 | box-shadow:1px 1px 5px #777; |
| 922 | -moz-box-shadow: 1px 1px 5px #777; |
| 923 | -webkit-box-shadow: 1px 1px 5px #777; |
| 924 | |
| 925 | border-radius: 5px; |
| 926 | -moz-border-radius: 5px; |
| 927 | -webkit-border-radius: 5px; |
| 928 | } |
| 929 | |
| 930 | div.dialog_head { |
| 931 | height: 22px; |
| 932 | padding: 4px; |
| 933 | background-color: #222; |
| 934 | color: #FFF; |
| 935 | } |
| 936 | |
| 937 | div.dialog_body { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 938 | padding: 8px 8px 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 939 | border-radius: 5px; |
| 940 | -moz-border-radius: 5px; |
| 941 | -webkit-border-radius: 5px; |
| 942 | } |
| 943 | |
| 944 | div.dialog_back { |
| 945 | position: fixed; |
| 946 | display: none; |
| 947 | top: 0px; |
| 948 | left: 0px; |
| 949 | bottom: 0px; |
| 950 | right: 0px; |
| 951 | background-color: #EEE; |
| 952 | opacity: 0.6; |
| 953 | z-index: 50; |
| 954 | text-align: center; |
| 955 | } |
| 956 | |
| 957 | div.dialog_message { |
| 958 | display: none; |
| 959 | position: absolute; |
| 960 | width: 250px; |
| 961 | font-size: 12px; |
| 962 | z-index: 91; |
| 963 | background-color:#FFF; |
| 964 | padding: 12px; |
| 965 | border: 1px solid #444; |
| 966 | } |
| 967 | |
| 968 | div.dialog_row { |
| 969 | padding: 8px 8px 0px 8px; |
| 970 | } |
| 971 | |
| 972 | div.dialog_row table { |
| 973 | width: 100%; |
| 974 | } |
| 975 | |
| 976 | div.dialog_row table td { |
| 977 | } |
| 978 | |
| 979 | div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select { |
| 980 | width: 80%; |
| 981 | font-size: 14px; |
| 982 | } |
| 983 | |
| 984 | div.dialog_row table td textarea { |
| 985 | width: 80%; |
| 986 | height: 200px; |
| 987 | font-size: 12px; |
| 988 | } |
| 989 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 990 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 991 | /* |
| 992 | * lib/css/legacy/tabs.css |
| 993 | */ |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 994 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 995 | /******* TABS ********/ |
| 996 | |
| 997 | div.box_label_wrapper { |
| 998 | border-bottom: 6px solid #777; |
| 999 | } |
| 1000 | |
| 1001 | div.box_label_body { |
| 1002 | height: 22px; |
| 1003 | } |
| 1004 | |
| 1005 | ul.box_tabs { |
| 1006 | margin: 0px; |
| 1007 | padding: 0px; |
| 1008 | list-style: none; |
| 1009 | } |
| 1010 | |
| 1011 | ul.box_tabs li { |
| 1012 | height: 22px; |
| 1013 | float:left; |
| 1014 | font-size: 12px; |
| 1015 | text-decoration: underline; |
| 1016 | |
| 1017 | background-color: #DDD; |
| 1018 | |
| 1019 | margin:0; |
| 1020 | margin-left: 4px; |
| 1021 | padding:0 0 0 9px; |
| 1022 | cursor: pointer; |
| 1023 | } |
| 1024 | |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 1025 | ul.box_tabs li a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1026 | display:block; |
| 1027 | padding:3px 15px 3px 6px; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 1028 | text-decoration: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | ul.box_tabs li.box_tab_mouseover { |
| 1032 | background-color: #BBB; |
| 1033 | } |
| 1034 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1035 | ul.box_tabs li.box_tab_selected { |
| 1036 | background-color: #777; |
| 1037 | |
| 1038 | background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777)); |
| 1039 | background: -moz-linear-gradient(top, #999, #777); |
| 1040 | |
| 1041 | color: #FFF; |
| 1042 | font-weight:bold; |
| 1043 | |
| 1044 | } |
| 1045 | ul.box_tabs li.box_tab_selected a { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 1046 | color: #fff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1047 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1048 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1049 | /* |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1050 | * lib/css/legacy/sidebar.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1051 | */ |
| 1052 | div.psidebar { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1053 | } |
| 1054 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 1055 | div.psidebar div.head { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1056 | font-size: 14px; |
| 1057 | font-weight: bold; |
| 1058 | color: #555; |
| 1059 | margin-bottom: 12px; |
| 1060 | } |
| 1061 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 1062 | div.psidebar div.section { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1063 | margin-bottom: 11px; |
| 1064 | overflow: hidden; |
| 1065 | } |
| 1066 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 1067 | div.psidebar div.section-head { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1068 | padding: 5px 11px; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 1069 | border-bottom: 1px solid #aaa; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1070 | } |
| 1071 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 1072 | div.psidebar div.section-body { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1073 | margin: 7px 11px 11px 11px; |
| 1074 | } |
| 1075 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 1076 | div.psidebar div.section-item { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1077 | margin-bottom: 7px; |
| 1078 | } |
| 1079 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 1080 | div.psidebar div.section-item, div.psidebar .section-link { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1081 | color: #666; |
| 1082 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1083 | |
| 1084 | /* |
| 1085 | * lib/css/Aristo/aristo.selected.css |
| 1086 | */ |
| 1087 | /* |
| 1088 | * jQuery UI CSS Framework 1.8.7 |
| 1089 | * |
| 1090 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 1091 | * Dual licensed under the MIT or GPL Version 2 licenses. |
| 1092 | * http://jquery.org/license |
| 1093 | * |
| 1094 | * http://docs.jquery.com/UI/Theming/API |
| 1095 | */ |
| 1096 | |
| 1097 | /* Layout helpers |
| 1098 | ----------------------------------*/ |
| 1099 | .ui-helper-hidden { display: none; } |
| 1100 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } |
| 1101 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } |
| 1102 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } |
| 1103 | .ui-helper-clearfix { display: inline-block; } |
| 1104 | /* required comment for clearfix to work in Opera \*/ |
| 1105 | * html .ui-helper-clearfix { height:1%; } |
| 1106 | .ui-helper-clearfix { display:block; } |
| 1107 | /* end clearfix */ |
| 1108 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } |
| 1109 | |
| 1110 | |
| 1111 | /* Interaction Cues |
| 1112 | ----------------------------------*/ |
| 1113 | .ui-state-disabled { cursor: default !important; } |
| 1114 | |
| 1115 | |
| 1116 | /* Icons |
| 1117 | ----------------------------------*/ |
| 1118 | |
| 1119 | /* states and images */ |
| 1120 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } |
| 1121 | |
| 1122 | |
| 1123 | /* Misc visuals |
| 1124 | ----------------------------------*/ |
| 1125 | |
| 1126 | /* Overlays */ |
| 1127 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } |
| 1128 | |
| 1129 | |
| 1130 | /* |
| 1131 | * jQuery UI CSS Framework 1.8.7 |
| 1132 | * |
| 1133 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 1134 | * Dual licensed under the MIT or GPL Version 2 licenses. |
| 1135 | * http://jquery.org/license |
| 1136 | * |
| 1137 | * http://docs.jquery.com/UI/Theming/API |
| 1138 | * |
| 1139 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller |
| 1140 | */ |
| 1141 | |
| 1142 | |
| 1143 | /* Component containers |
| 1144 | ----------------------------------*/ |
| 1145 | .ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; } |
| 1146 | .ui-widget .ui-widget { font-size: 1em; } |
| 1147 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; } |
| 1148 | .ui-widget-content { border: 1px solid #B6B6B6; background: #ffffff; color: #4F4F4F; } |
| 1149 | .ui-widget-content a { color: #4F4F4F; } |
| 1150 | .ui-widget-header { border: 1px solid #B6B6B6; color: #4F4F4F; font-weight: bold; } |
| 1151 | .ui-widget-header { |
| 1152 | background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */ |
| 1153 | background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */ |
| 1154 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */ |
| 1155 | background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */ |
| 1156 | background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */ |
| 1157 | background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */ |
| 1158 | background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */ |
| 1159 | } |
| 1160 | .ui-widget-header a { color: #4F4F4F; } |
| 1161 | |
| 1162 | /* Interaction states |
| 1163 | ----------------------------------*/ |
| 1164 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B6B6B6; font-weight: normal; color: #4F4F4F; } |
| 1165 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { |
| 1166 | background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 0 repeat-x; /* Old browsers */ |
| 1167 | background: -moz-linear-gradient(top, #ededed 0%, #c4c4c4 100%); /* FF3.6+ */ |
| 1168 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */ |
| 1169 | background: -webkit-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */ |
| 1170 | background: -o-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* Opera11.10+ */ |
| 1171 | background: -ms-linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* IE10+ */ |
| 1172 | background: linear-gradient(top, #ededed 0%,#c4c4c4 100%); /* W3C */ |
| 1173 | -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset; |
| 1174 | -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset; |
| 1175 | box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset; |
| 1176 | } |
| 1177 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #4F4F4F; text-decoration: none; } |
| 1178 | .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #9D9D9D; font-weight: normal; color: #313131; } |
| 1179 | .ui-state-hover a, .ui-state-hover a:hover { color: #313131; text-decoration: none; } |
| 1180 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { |
| 1181 | outline: none; |
| 1182 | color: #1c4257; border: 1px solid #7096ab; |
| 1183 | background: #ededed url(../lib/css/Aristo/images/bg_fallback.png) 0 -50px repeat-x; /* Old browsers */ |
| 1184 | background: -moz-linear-gradient(top, #b9e0f5 0%, #92bdd6 100%); /* FF3.6+ */ |
| 1185 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b9e0f5), color-stop(100%,#92bdd6)); /* Chrome,Safari4+ */ |
| 1186 | background: -webkit-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Chrome10+,Safari5.1+ */ |
| 1187 | background: -o-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* Opera11.10+ */ |
| 1188 | background: -ms-linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* IE10+ */ |
| 1189 | background: linear-gradient(top, #b9e0f5 0%,#92bdd6 100%); /* W3C */ |
| 1190 | -webkit-box-shadow: none; |
| 1191 | -moz-box-shadow: none; |
| 1192 | box-shadow: none; |
| 1193 | } |
| 1194 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #313131; text-decoration: none; } |
| 1195 | .ui-widget :active { outline: none; } |
| 1196 | |
| 1197 | /* Interaction Cues |
| 1198 | ----------------------------------*/ |
| 1199 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight { border: 1px solid #d2dbf4; background: #f4f8fd; color: #0d2054; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; } |
| 1200 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; } |
| 1201 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error { border: 1px solid #e2d0d0; background: #fcf0f0; color: #280b0b; -moz-border-radius: 0 !important; -webkit-border-radius: 0 !important; border-radius: 0 !important; } |
| 1202 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; } |
| 1203 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; } |
| 1204 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } |
| 1205 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } |
| 1206 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } |
| 1207 | |
| 1208 | /* Icons |
| 1209 | ----------------------------------*/ |
| 1210 | |
| 1211 | /* states and images */ |
| 1212 | .ui-icon { width: 16px; height: 16px; background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); } |
| 1213 | .ui-widget-content .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); } |
| 1214 | .ui-widget-header .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_222222_256x240.png); } |
| 1215 | .ui-state-default .ui-icon { background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); } |
| 1216 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); } |
| 1217 | .ui-state-active .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); } |
| 1218 | .ui-state-highlight .ui-icon {background-image: url(../lib/css/Aristo/images/ui-icons_454545_256x240.png); } |
| 1219 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background: url(../lib/css/Aristo/images/icon_sprite.png) -16px 0 no-repeat !important; } |
| 1220 | .ui-state-highlight .ui-icon, .ui-state-error .ui-icon { margin-top: -1px; } |
| 1221 | |
| 1222 | /* positioning */ |
| 1223 | .ui-icon-carat-1-n { background-position: 0 0; } |
| 1224 | .ui-icon-carat-1-ne { background-position: -16px 0; } |
| 1225 | .ui-icon-carat-1-e { background-position: -32px 0; } |
| 1226 | .ui-icon-carat-1-se { background-position: -48px 0; } |
| 1227 | .ui-icon-carat-1-s { background-position: -64px 0; } |
| 1228 | .ui-icon-carat-1-sw { background-position: -80px 0; } |
| 1229 | .ui-icon-carat-1-w { background-position: -96px 0; } |
| 1230 | .ui-icon-carat-1-nw { background-position: -112px 0; } |
| 1231 | .ui-icon-carat-2-n-s { background-position: -128px 0; } |
| 1232 | .ui-icon-carat-2-e-w { background-position: -144px 0; } |
| 1233 | .ui-icon-triangle-1-n { background-position: 0 -16px; } |
| 1234 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } |
| 1235 | .ui-icon-triangle-1-e { background-position: -32px -16px; } |
| 1236 | .ui-icon-triangle-1-se { background-position: -48px -16px; } |
| 1237 | .ui-icon-triangle-1-s { background-position: -64px -16px; } |
| 1238 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } |
| 1239 | .ui-icon-triangle-1-w { background-position: -96px -16px; } |
| 1240 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } |
| 1241 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } |
| 1242 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } |
| 1243 | .ui-icon-arrow-1-n { background-position: 0 -32px; } |
| 1244 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } |
| 1245 | .ui-icon-arrow-1-e { background-position: -32px -32px; } |
| 1246 | .ui-icon-arrow-1-se { background-position: -48px -32px; } |
| 1247 | .ui-icon-arrow-1-s { background-position: -64px -32px; } |
| 1248 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } |
| 1249 | .ui-icon-arrow-1-w { background-position: -96px -32px; } |
| 1250 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } |
| 1251 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } |
| 1252 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } |
| 1253 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } |
| 1254 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } |
| 1255 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } |
| 1256 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } |
| 1257 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } |
| 1258 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } |
| 1259 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } |
| 1260 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } |
| 1261 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } |
| 1262 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } |
| 1263 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } |
| 1264 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } |
| 1265 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } |
| 1266 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } |
| 1267 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } |
| 1268 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } |
| 1269 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } |
| 1270 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } |
| 1271 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } |
| 1272 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } |
| 1273 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } |
| 1274 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } |
| 1275 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } |
| 1276 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } |
| 1277 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } |
| 1278 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } |
| 1279 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } |
| 1280 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } |
| 1281 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } |
| 1282 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } |
| 1283 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } |
| 1284 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } |
| 1285 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } |
| 1286 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } |
| 1287 | .ui-icon-arrow-4 { background-position: 0 -80px; } |
| 1288 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } |
| 1289 | .ui-icon-extlink { background-position: -32px -80px; } |
| 1290 | .ui-icon-newwin { background-position: -48px -80px; } |
| 1291 | .ui-icon-refresh { background-position: -64px -80px; } |
| 1292 | .ui-icon-shuffle { background-position: -80px -80px; } |
| 1293 | .ui-icon-transfer-e-w { background-position: -96px -80px; } |
| 1294 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } |
| 1295 | .ui-icon-folder-collapsed { background-position: 0 -96px; } |
| 1296 | .ui-icon-folder-open { background-position: -16px -96px; } |
| 1297 | .ui-icon-document { background-position: -32px -96px; } |
| 1298 | .ui-icon-document-b { background-position: -48px -96px; } |
| 1299 | .ui-icon-note { background-position: -64px -96px; } |
| 1300 | .ui-icon-mail-closed { background-position: -80px -96px; } |
| 1301 | .ui-icon-mail-open { background-position: -96px -96px; } |
| 1302 | .ui-icon-suitcase { background-position: -112px -96px; } |
| 1303 | .ui-icon-comment { background-position: -128px -96px; } |
| 1304 | .ui-icon-person { background-position: -144px -96px; } |
| 1305 | .ui-icon-print { background-position: -160px -96px; } |
| 1306 | .ui-icon-trash { background-position: -176px -96px; } |
| 1307 | .ui-icon-locked { background-position: -192px -96px; } |
| 1308 | .ui-icon-unlocked { background-position: -208px -96px; } |
| 1309 | .ui-icon-bookmark { background-position: -224px -96px; } |
| 1310 | .ui-icon-tag { background-position: -240px -96px; } |
| 1311 | .ui-icon-home { background-position: 0 -112px; } |
| 1312 | .ui-icon-flag { background-position: -16px -112px; } |
| 1313 | .ui-icon-calendar { background-position: -32px -112px; } |
| 1314 | .ui-icon-cart { background-position: -48px -112px; } |
| 1315 | .ui-icon-pencil { background-position: -64px -112px; } |
| 1316 | .ui-icon-clock { background-position: -80px -112px; } |
| 1317 | .ui-icon-disk { background-position: -96px -112px; } |
| 1318 | .ui-icon-calculator { background-position: -112px -112px; } |
| 1319 | .ui-icon-zoomin { background-position: -128px -112px; } |
| 1320 | .ui-icon-zoomout { background-position: -144px -112px; } |
| 1321 | .ui-icon-search { background-position: -160px -112px; } |
| 1322 | .ui-icon-wrench { background-position: -176px -112px; } |
| 1323 | .ui-icon-gear { background-position: -192px -112px; } |
| 1324 | .ui-icon-heart { background-position: -208px -112px; } |
| 1325 | .ui-icon-star { background-position: -224px -112px; } |
| 1326 | .ui-icon-link { background-position: -240px -112px; } |
| 1327 | .ui-icon-cancel { background-position: 0 -128px; } |
| 1328 | .ui-icon-plus { background-position: -16px -128px; } |
| 1329 | .ui-icon-plusthick { background-position: -32px -128px; } |
| 1330 | .ui-icon-minus { background-position: -48px -128px; } |
| 1331 | .ui-icon-minusthick { background-position: -64px -128px; } |
| 1332 | .ui-icon-close { background-position: -80px -128px; } |
| 1333 | .ui-icon-closethick { background-position: -96px -128px; } |
| 1334 | .ui-icon-key { background-position: -112px -128px; } |
| 1335 | .ui-icon-lightbulb { background-position: -128px -128px; } |
| 1336 | .ui-icon-scissors { background-position: -144px -128px; } |
| 1337 | .ui-icon-clipboard { background-position: -160px -128px; } |
| 1338 | .ui-icon-copy { background-position: -176px -128px; } |
| 1339 | .ui-icon-contact { background-position: -192px -128px; } |
| 1340 | .ui-icon-image { background-position: -208px -128px; } |
| 1341 | .ui-icon-video { background-position: -224px -128px; } |
| 1342 | .ui-icon-script { background-position: -240px -128px; } |
| 1343 | .ui-icon-alert { background-position: 0 -144px; } |
| 1344 | .ui-icon-info { background: url(../lib/css/Aristo/images/icon_sprite.png) 0 0 no-repeat !important; } |
| 1345 | .ui-icon-notice { background-position: -32px -144px; } |
| 1346 | .ui-icon-help { background-position: -48px -144px; } |
| 1347 | .ui-icon-check { background-position: -64px -144px; } |
| 1348 | .ui-icon-bullet { background-position: -80px -144px; } |
| 1349 | .ui-icon-radio-off { background-position: -96px -144px; } |
| 1350 | .ui-icon-radio-on { background-position: -112px -144px; } |
| 1351 | .ui-icon-pin-w { background-position: -128px -144px; } |
| 1352 | .ui-icon-pin-s { background-position: -144px -144px; } |
| 1353 | .ui-icon-play { background-position: 0 -160px; } |
| 1354 | .ui-icon-pause { background-position: -16px -160px; } |
| 1355 | .ui-icon-seek-next { background-position: -32px -160px; } |
| 1356 | .ui-icon-seek-prev { background-position: -48px -160px; } |
| 1357 | .ui-icon-seek-end { background-position: -64px -160px; } |
| 1358 | .ui-icon-seek-start { background-position: -80px -160px; } |
| 1359 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ |
| 1360 | .ui-icon-seek-first { background-position: -80px -160px; } |
| 1361 | .ui-icon-stop { background-position: -96px -160px; } |
| 1362 | .ui-icon-eject { background-position: -112px -160px; } |
| 1363 | .ui-icon-volume-off { background-position: -128px -160px; } |
| 1364 | .ui-icon-volume-on { background-position: -144px -160px; } |
| 1365 | .ui-icon-power { background-position: 0 -176px; } |
| 1366 | .ui-icon-signal-diag { background-position: -16px -176px; } |
| 1367 | .ui-icon-signal { background-position: -32px -176px; } |
| 1368 | .ui-icon-battery-0 { background-position: -48px -176px; } |
| 1369 | .ui-icon-battery-1 { background-position: -64px -176px; } |
| 1370 | .ui-icon-battery-2 { background-position: -80px -176px; } |
| 1371 | .ui-icon-battery-3 { background-position: -96px -176px; } |
| 1372 | .ui-icon-circle-plus { background-position: 0 -192px; } |
| 1373 | .ui-icon-circle-minus { background-position: -16px -192px; } |
| 1374 | .ui-icon-circle-close { background-position: -32px -192px; } |
| 1375 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } |
| 1376 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } |
| 1377 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } |
| 1378 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } |
| 1379 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } |
| 1380 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } |
| 1381 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } |
| 1382 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } |
| 1383 | .ui-icon-circle-zoomin { background-position: -176px -192px; } |
| 1384 | .ui-icon-circle-zoomout { background-position: -192px -192px; } |
| 1385 | .ui-icon-circle-check { background-position: -208px -192px; } |
| 1386 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } |
| 1387 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } |
| 1388 | .ui-icon-circlesmall-close { background-position: -32px -208px; } |
| 1389 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } |
| 1390 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } |
| 1391 | .ui-icon-squaresmall-close { background-position: -80px -208px; } |
| 1392 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } |
| 1393 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } |
| 1394 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } |
| 1395 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } |
| 1396 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } |
| 1397 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } |
| 1398 | |
| 1399 | |
| 1400 | /* Misc visuals |
| 1401 | ----------------------------------*/ |
| 1402 | |
| 1403 | /* Corner radius */ |
| 1404 | .ui-corner-tl { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; } |
| 1405 | .ui-corner-tr { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; } |
| 1406 | .ui-corner-bl { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; } |
| 1407 | .ui-corner-br { -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; } |
| 1408 | .ui-corner-top { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; } |
| 1409 | .ui-corner-bottom { -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; } |
| 1410 | .ui-corner-right { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; } |
| 1411 | .ui-corner-left { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; } |
| 1412 | .ui-corner-all { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } |
| 1413 | |
| 1414 | /* Overlays */ |
| 1415 | .ui-widget-overlay { background: #262b33; opacity: .70;filter:Alpha(Opacity=70); } |
| 1416 | .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #000000; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; } |
| 1417 | |
| 1418 | /* |
| 1419 | * jQuery UI Autocomplete 1.8.7 |
| 1420 | * |
| 1421 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 1422 | * Dual licensed under the MIT or GPL Version 2 licenses. |
| 1423 | * http://jquery.org/license |
| 1424 | * |
| 1425 | * http://docs.jquery.com/UI/Autocomplete#theming |
| 1426 | */ |
| 1427 | .ui-autocomplete { |
| 1428 | position: absolute; cursor: default; z-index: 3; |
| 1429 | -moz-border-radius: 0; |
| 1430 | -webkit-border-radius: 0; |
| 1431 | border-radius: 0; |
| 1432 | -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3); |
| 1433 | -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3); |
| 1434 | box-shadow: 0 1px 5px rgba(0,0,0,0.3); |
| 1435 | } |
| 1436 | |
| 1437 | /* workarounds */ |
| 1438 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ |
| 1439 | |
| 1440 | /* |
| 1441 | * jQuery UI Menu 1.8.7 |
| 1442 | * |
| 1443 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 1444 | * Dual licensed under the MIT or GPL Version 2 licenses. |
| 1445 | * http://jquery.org/license |
| 1446 | * |
| 1447 | * http://docs.jquery.com/UI/Menu#theming |
| 1448 | */ |
| 1449 | .ui-menu { |
| 1450 | list-style:none; |
| 1451 | padding: 2px; |
| 1452 | margin: 0; |
| 1453 | display:block; |
| 1454 | float: left; |
| 1455 | } |
| 1456 | .ui-menu .ui-menu { |
| 1457 | margin-top: -3px; |
| 1458 | } |
| 1459 | .ui-menu .ui-menu-item { |
| 1460 | margin:0; |
| 1461 | padding: 0; |
| 1462 | zoom: 1; |
| 1463 | float: left; |
| 1464 | clear: left; |
| 1465 | width: 100%; |
| 1466 | } |
| 1467 | .ui-menu .ui-menu-item a { |
| 1468 | text-decoration:none; |
| 1469 | display:block; |
| 1470 | padding:.2em .4em; |
| 1471 | line-height:1.5; |
| 1472 | zoom:1; |
| 1473 | } |
| 1474 | .ui-menu .ui-menu-item a.ui-state-hover, |
| 1475 | .ui-menu .ui-menu-item a.ui-state-active { |
| 1476 | font-weight: normal; |
| 1477 | margin: -1px; |
| 1478 | background: #5f83b9; |
| 1479 | color: #FFFFFF; |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1480 | border-color: #466086; |
| 1481 | -moz-border-radius: 0; |
| 1482 | -webkit-border-radius: 0; |
| 1483 | border-radius: 0; |
| 1484 | } |
| 1485 | |
| 1486 | /* |
| 1487 | * jQuery UI Datepicker 1.8.7 |
| 1488 | * |
| 1489 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
| 1490 | * Dual licensed under the MIT or GPL Version 2 licenses. |
| 1491 | * http://jquery.org/license |
| 1492 | * |
| 1493 | * http://docs.jquery.com/UI/Datepicker#theming |
| 1494 | */ |
| 1495 | .ui-datepicker { width: 17em; padding: 0; display: none; border-color: #DDDDDD; } |
| 1496 | .ui-datepicker { |
| 1497 | -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); |
| 1498 | -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); |
| 1499 | box-shadow: 0 4px 8px rgba(0,0,0,0.5); |
| 1500 | } |
| 1501 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.35em 0; border: none; border-bottom: 1px solid #B6B6B6; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } |
| 1502 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 6px; width: 1.8em; height: 1.8em; } |
| 1503 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { border: 1px none; } |
| 1504 | .ui-datepicker .ui-datepicker-prev { left:2px; } |
| 1505 | .ui-datepicker .ui-datepicker-next { right:2px; } |
| 1506 | .ui-datepicker .ui-datepicker-prev span { background-position: 0px -32px !important; } |
| 1507 | .ui-datepicker .ui-datepicker-next span { background-position: -16px -32px !important; } |
| 1508 | .ui-datepicker .ui-datepicker-prev-hover span { background-position: 0px -48px !important; } |
| 1509 | .ui-datepicker .ui-datepicker-next-hover span { background-position: -16px -48px !important; } |
| 1510 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; background: url(../lib/css/Aristo/images/icon_sprite.png) no-repeat; } |
| 1511 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; font-size: 12px; text-shadow: 0 1px 0 rgba(255,255,255,0.6); } |
| 1512 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } |
| 1513 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} |
| 1514 | .ui-datepicker select.ui-datepicker-month, |
| 1515 | .ui-datepicker select.ui-datepicker-year { width: 49%;} |
| 1516 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } |
| 1517 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } |
| 1518 | .ui-datepicker td { border: 0; padding: 1px; } |
| 1519 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } |
| 1520 | .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } |
| 1521 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } |
| 1522 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } |
| 1523 | .ui-datepicker table .ui-state-highlight { border-color: #5F83B9; } |
| 1524 | .ui-datepicker table .ui-state-hover { background: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; -webkit-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; -moz-box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; box-shadow: 0 0px 0 rgba(255,255,255,0.6) inset; border-color: #5F83B9; } |
| 1525 | .ui-datepicker-calendar .ui-state-default { background: transparent; border-color: #FFF; } |
| 1526 | .ui-datepicker-calendar .ui-state-active { background: #5F83B9; border-color: #5F83B9; color: #FFF; font-weight: bold; text-shadow: 0 1px 1px #234386; } |
| 1527 | |
| 1528 | /* with multiple calendars */ |
| 1529 | .ui-datepicker.ui-datepicker-multi { width:auto; } |
| 1530 | .ui-datepicker-multi .ui-datepicker-group { float:left; } |
| 1531 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } |
| 1532 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } |
| 1533 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } |
| 1534 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } |
| 1535 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } |
| 1536 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } |
| 1537 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } |
| 1538 | .ui-datepicker-row-break { clear:both; width:100%; } |
| 1539 | |
| 1540 | /* RTL support */ |
| 1541 | .ui-datepicker-rtl { direction: rtl; } |
| 1542 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } |
| 1543 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } |
| 1544 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } |
| 1545 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } |
| 1546 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } |
| 1547 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } |
| 1548 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } |
| 1549 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } |
| 1550 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
| 1551 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
| 1552 | |
| 1553 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ |
| 1554 | .ui-datepicker-cover { |
| 1555 | display: none; /*sorry for IE5*/ |
| 1556 | display/**/: block; /*sorry for IE5*/ |
| 1557 | position: absolute; /*must have*/ |
| 1558 | z-index: -1; /*must have*/ |
| 1559 | filter: mask(); /*must have*/ |
| 1560 | top: -4px; /*must have*/ |
| 1561 | left: -4px; /*must have*/ |
| 1562 | width: 200px; /*must have*/ |
| 1563 | height: 200px; /*must have*/ |
| 1564 | } |
| 1565 | |
| 1566 | |
| 1567 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1568 | /* |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1569 | * lib/css/ui/list.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1570 | */ |
| 1571 | .hide { |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1572 | display: none; |
| 1573 | } |
| 1574 | |
| 1575 | .list-filters { |
| 1576 | margin: 7px 0px; |
| 1577 | } |
| 1578 | |
| 1579 | .wnlist .img-load { |
| 1580 | display: none; |
Rushabh Mehta | 842f782 | 2012-03-22 14:24:49 +0530 | [diff] [blame] | 1581 | float: left; |
| 1582 | margin-bottom: 8px; |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1583 | } |
| 1584 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1585 | /* list-row */ |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1586 | div.list-row { |
| 1587 | border-bottom: 1px solid #eee; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1588 | padding: 5px 0px; |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1589 | } |
| 1590 | div.list-row:hover { |
| 1591 | background-color: #eef |
| 1592 | } |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1593 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1594 | div.list-row .label { |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1595 | margin-right: 4px; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1596 | } |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1597 | |
| 1598 | div.list-row table { |
| 1599 | table-layout: fixed; |
| 1600 | border-collapse: collapse; |
| 1601 | width: 100%; |
| 1602 | } |
| 1603 | |
| 1604 | div.list-row table td { |
| 1605 | overflow: hidden; |
Anand Doshi | c9456c1 | 2012-03-28 17:48:30 +0530 | [diff] [blame] | 1606 | /*padding-right: 3px;*/ |
| 1607 | padding: 0px 3px; |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1608 | vertical-align: middle; |
| 1609 | height: 24px; |
| 1610 | max-height: 24px; |
Anand Doshi | c9456c1 | 2012-03-28 17:48:30 +0530 | [diff] [blame] | 1611 | word-wrap: break-word; |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1612 | } |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1613 | |
Rushabh Mehta | 9f89e35 | 2012-03-09 17:51:39 +0530 | [diff] [blame] | 1614 | div.paging-button { |
| 1615 | text-align: center; |
| 1616 | padding: 11px 0px; |
| 1617 | } |
| 1618 | |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1619 | div.show_filters { |
| 1620 | display: none; |
| 1621 | } |
| 1622 | |
| 1623 | div.filter_list { |
| 1624 | padding: 13px; |
| 1625 | } |
| 1626 | |
| 1627 | div.show_filters.well { |
| 1628 | margin-top: 11px; |
| 1629 | margin-bottom: 11px; |
| 1630 | } |
| 1631 | |
| 1632 | div.filter_list .run_btn { |
| 1633 | text-align: right; |
| 1634 | } |
| 1635 | |
| 1636 | div.filter_list .add_filter { |
| 1637 | margin: 3px 0px; |
| 1638 | } |
| 1639 | |
| 1640 | div.list_filter { |
| 1641 | margin: 7px 0px; |
| 1642 | } |
| 1643 | |
| 1644 | div.list_filter input, div.list_filter select { |
| 1645 | width: 130px; |
| 1646 | margin-right: 7px; |
| 1647 | } |
| 1648 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1649 | /* bar */ |
| 1650 | |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1651 | span.bar-outer { |
| 1652 | display: inline-block; |
| 1653 | margin: 0px 7px; |
| 1654 | margin-top: 3px; |
| 1655 | background-color: #fff; |
| 1656 | border: 1px solid #aaa; |
| 1657 | height: 10px; |
| 1658 | } |
| 1659 | |
| 1660 | span.bar-inner { |
| 1661 | display: inline-block; |
| 1662 | background-color: #bdf; |
| 1663 | height: 100%; |
| 1664 | margin-bottom: 2px; |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1665 | float: left; |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1666 | } |
| 1667 | span.bar-complete { |
Rushabh Mehta | 437c1b5 | 2012-03-20 18:45:28 +0530 | [diff] [blame] | 1668 | background-color: #009900; |
| 1669 | } |
| 1670 | span.bar-empty { |
| 1671 | background-color: #990000; |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1672 | } |
| 1673 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1674 | |
Rushabh Mehta | 2438de4 | 2012-03-15 16:43:46 +0530 | [diff] [blame] | 1675 | /* stats */ |
| 1676 | |
| 1677 | div.stat-wrapper { |
| 1678 | margin-bottom: 19px; |
| 1679 | } |
| 1680 | |
| 1681 | div.stat-grid { |
| 1682 | border: 2px solid #bbb; |
| 1683 | background-color: white; |
| 1684 | border-radius: 5px; |
| 1685 | -moz-border-radius: 5px; |
| 1686 | -webkit-border-radius: 5px; |
| 1687 | overflow: hidden; |
| 1688 | } |
| 1689 | |
| 1690 | div.stat-label { |
| 1691 | position: relative; |
| 1692 | padding: 3px; |
| 1693 | text-align: center; |
| 1694 | } |
| 1695 | div.stat-label, div.stat-label a { |
| 1696 | z-index: 5; |
| 1697 | } |
| 1698 | |
| 1699 | div.stat-item { |
| 1700 | position: relative; |
| 1701 | border-bottom: 1px solid #ddd; |
| 1702 | } |
| 1703 | div.stat-item:last-child { |
| 1704 | border-bottom: 0px solid #ddd; |
| 1705 | } |
| 1706 | |
| 1707 | div.stat-bar { |
| 1708 | position: absolute; |
| 1709 | left: 0px; |
| 1710 | background-color: #def; |
| 1711 | height: 100%; |
| 1712 | z-index: 0; |
| 1713 | } |
| 1714 | |
| 1715 | |
| 1716 | |
| 1717 | |
| 1718 | |
Rushabh Mehta | f81a64e | 2012-03-07 18:19:41 +0530 | [diff] [blame] | 1719 | /* |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 1720 | * lib/css/ui/fonts.css |
| 1721 | */ |
| 1722 | @font-face { |
| 1723 | font-family: 'Pontano Sans'; |
| 1724 | font-style: normal; |
Rushabh Mehta | a665c1f | 2012-03-21 11:47:58 +0530 | [diff] [blame] | 1725 | font-weight: 800; |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 1726 | src: url('../lib/css/fonts/pontanosans.woff') format('woff'); |
| 1727 | } |
| 1728 | |
| 1729 | @font-face { |
| 1730 | font-family: 'Droid Sans'; |
| 1731 | font-style: normal; |
| 1732 | font-weight: normal; |
| 1733 | src: local('Droid Sans'), local('DroidSans'), url('../lib/css/fonts/droidsans.woff') format('woff'); |
| 1734 | } |
| 1735 | |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 1736 | @font-face { |
| 1737 | font-family: 'PT Sans'; |
| 1738 | font-style: normal; |
| 1739 | font-weight: normal; |
| 1740 | src: local('PT Sans'), local('PTSans-Regular'), url('../lib/css/fonts/ptsans.woff') format('woff'); |
| 1741 | } |
| 1742 | |
| 1743 | @font-face { |
| 1744 | font-family: 'Open Sans'; |
| 1745 | font-style: normal; |
| 1746 | font-weight: 400; |
| 1747 | src: local('Open Sans'), local('OpenSans'), url('../lib/css/fonts/opensans.woff') format('woff'); |
| 1748 | } |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1749 | |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 1750 | @font-face { |
| 1751 | font-family: 'Lato'; |
| 1752 | font-style: normal; |
| 1753 | font-weight: 400; |
| 1754 | src: local('Lato Regular'), local('Lato-Regular'), url('../lib/css/fonts/lato.woff') format('woff'); |
| 1755 | } |
| 1756 | |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 1757 | @font-face { |
| 1758 | font-family: 'Cabin'; |
| 1759 | font-style: normal; |
| 1760 | font-weight: 400; |
| 1761 | src: local('Cabin Regular'), local('Cabin-Regular'), url('../lib/css/fonts/cabin.woff') format('woff'); |
| 1762 | } |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 1763 | |
| 1764 | |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 1765 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1766 | * lib/css/bootstrap/headings.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1767 | */ |
| 1768 | /* heading from bootstrap */ |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1769 | |
| 1770 | h1, |
| 1771 | h2, |
| 1772 | h3, |
| 1773 | h4, |
| 1774 | h5, |
| 1775 | h6 { |
| 1776 | margin: 0; |
| 1777 | font-weight: bold; |
| 1778 | color: #333333; |
| 1779 | text-rendering: optimizelegibility; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1780 | } |
| 1781 | h1 small, |
| 1782 | h2 small, |
| 1783 | h3 small, |
| 1784 | h4 small, |
| 1785 | h5 small, |
| 1786 | h6 small { |
| 1787 | font-weight: normal; |
| 1788 | color: #999999; |
| 1789 | } |
| 1790 | h1 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1791 | font-size: 280%; |
| 1792 | line-height: 120%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1793 | } |
| 1794 | h1 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1795 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1796 | } |
| 1797 | h2 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1798 | font-size: 200%; |
| 1799 | line-height: 120%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1800 | } |
| 1801 | h2 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1802 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1803 | } |
| 1804 | h3 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1805 | font-size: 210%; |
| 1806 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1807 | } |
| 1808 | h3 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1809 | font-size: 130%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1810 | } |
| 1811 | h4, h5, h6 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1812 | font-size: 150%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1813 | } |
| 1814 | h4 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1815 | font-size: 113%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1816 | } |
| 1817 | h4 small { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1818 | font-size: 100%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1819 | } |
| 1820 | h5 { |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 1821 | font-size: 100%; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1822 | } |
| 1823 | h6 { |
| 1824 | font-size: 11px; |
| 1825 | color: #999999; |
| 1826 | text-transform: uppercase; |
| 1827 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1828 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1829 | /* |
| 1830 | * lib/css/bootstrap/buttons.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 1831 | */ |
| 1832 | .close { |
Rushabh Mehta | 9b1afe1 | 2012-03-20 14:37:44 +0530 | [diff] [blame] | 1833 | font-family: Helvetica, Sans; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1834 | float: right; |
| 1835 | font-size: 20px; |
| 1836 | font-weight: bold; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1837 | line-height: 18px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1838 | color: #000000; |
| 1839 | text-shadow: 0 1px 0 #ffffff; |
| 1840 | opacity: 0.2; |
| 1841 | filter: alpha(opacity=20); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1842 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1843 | .close:hover { |
| 1844 | color: #000000; |
| 1845 | text-decoration: none; |
| 1846 | opacity: 0.4; |
| 1847 | filter: alpha(opacity=40); |
| 1848 | cursor: pointer; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1849 | } |
| 1850 | .btn { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1851 | display: inline-block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1852 | padding: 4px 10px 4px; |
| 1853 | font-size: 13px; |
| 1854 | line-height: 18px; |
| 1855 | color: #333333; |
| 1856 | text-align: center; |
| 1857 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); |
| 1858 | background-color: #fafafa; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1859 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); |
| 1860 | background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 1861 | background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); |
| 1862 | background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 1863 | background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 1864 | background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1865 | background-repeat: no-repeat; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1866 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1867 | border: 1px solid #ccc; |
| 1868 | border-bottom-color: #bbb; |
| 1869 | -webkit-border-radius: 4px; |
| 1870 | -moz-border-radius: 4px; |
| 1871 | border-radius: 4px; |
| 1872 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1873 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1874 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1875 | cursor: pointer; |
| 1876 | *margin-left: .3em; |
| 1877 | } |
| 1878 | .btn:first-child { |
| 1879 | *margin-left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1880 | } |
| 1881 | .btn:hover { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1882 | color: #333333; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1883 | text-decoration: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1884 | background-color: #e6e6e6; |
| 1885 | background-position: 0 -15px; |
| 1886 | -webkit-transition: background-position 0.1s linear; |
| 1887 | -moz-transition: background-position 0.1s linear; |
| 1888 | -ms-transition: background-position 0.1s linear; |
| 1889 | -o-transition: background-position 0.1s linear; |
| 1890 | transition: background-position 0.1s linear; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1891 | } |
| 1892 | .btn:focus { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1893 | outline: thin dotted; |
| 1894 | outline: 5px auto -webkit-focus-ring-color; |
| 1895 | outline-offset: -2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1896 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1897 | .btn.active, .btn:active { |
| 1898 | background-image: none; |
| 1899 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1900 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1901 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 1902 | background-color: #e6e6e6; |
| 1903 | background-color: #d9d9d9 \9; |
| 1904 | color: rgba(0, 0, 0, 0.5); |
| 1905 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1906 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1907 | .btn.disabled, .btn[disabled] { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1908 | cursor: default; |
| 1909 | background-image: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1910 | background-color: #e6e6e6; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1911 | opacity: 0.65; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1912 | filter: alpha(opacity=65); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1913 | -webkit-box-shadow: none; |
| 1914 | -moz-box-shadow: none; |
| 1915 | box-shadow: none; |
| 1916 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1917 | .btn-large { |
| 1918 | padding: 9px 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1919 | font-size: 15px; |
| 1920 | line-height: normal; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1921 | -webkit-border-radius: 5px; |
| 1922 | -moz-border-radius: 5px; |
| 1923 | border-radius: 5px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1924 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1925 | .btn-large .icon { |
| 1926 | margin-top: 1px; |
| 1927 | } |
| 1928 | .btn-small { |
| 1929 | padding: 5px 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1930 | font-size: 11px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1931 | line-height: 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1932 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1933 | .btn-small .icon { |
| 1934 | margin-top: -1px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1935 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 1936 | .btn-primary, |
| 1937 | .btn-primary:hover, |
| 1938 | .btn-warning, |
| 1939 | .btn-warning:hover, |
| 1940 | .btn-danger, |
| 1941 | .btn-danger:hover, |
| 1942 | .btn-success, |
| 1943 | .btn-success:hover, |
| 1944 | .btn-info, |
| 1945 | .btn-info:hover { |
| 1946 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 1947 | color: #ffffff; |
| 1948 | } |
| 1949 | .btn-primary.active, |
| 1950 | .btn-warning.active, |
| 1951 | .btn-danger.active, |
| 1952 | .btn-success.active, |
| 1953 | .btn-info.active { |
| 1954 | color: rgba(255, 255, 255, 0.75); |
| 1955 | } |
| 1956 | .btn-primary { |
| 1957 | background-color: #006dcc; |
| 1958 | background-image: -moz-linear-gradient(top, #0088cc, #0044cc); |
| 1959 | background-image: -ms-linear-gradient(top, #0088cc, #0044cc); |
| 1960 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); |
| 1961 | background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); |
| 1962 | background-image: -o-linear-gradient(top, #0088cc, #0044cc); |
| 1963 | background-image: linear-gradient(top, #0088cc, #0044cc); |
| 1964 | background-repeat: repeat-x; |
| 1965 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0); |
| 1966 | border-color: #0044cc #0044cc #002a80; |
| 1967 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1968 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 1969 | } |
| 1970 | .btn-primary:hover, |
| 1971 | .btn-primary:active, |
| 1972 | .btn-primary.active, |
| 1973 | .btn-primary.disabled, |
| 1974 | .btn-primary[disabled] { |
| 1975 | background-color: #0044cc; |
| 1976 | } |
| 1977 | .btn-primary:active, .btn-primary.active { |
| 1978 | background-color: #003399 \9; |
| 1979 | } |
| 1980 | .btn-warning { |
| 1981 | background-color: #faa732; |
| 1982 | background-image: -moz-linear-gradient(top, #fbb450, #f89406); |
| 1983 | background-image: -ms-linear-gradient(top, #fbb450, #f89406); |
| 1984 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); |
| 1985 | background-image: -webkit-linear-gradient(top, #fbb450, #f89406); |
| 1986 | background-image: -o-linear-gradient(top, #fbb450, #f89406); |
| 1987 | background-image: linear-gradient(top, #fbb450, #f89406); |
| 1988 | background-repeat: repeat-x; |
| 1989 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); |
| 1990 | border-color: #f89406 #f89406 #ad6704; |
| 1991 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1992 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 1993 | } |
| 1994 | .btn-warning:hover, |
| 1995 | .btn-warning:active, |
| 1996 | .btn-warning.active, |
| 1997 | .btn-warning.disabled, |
| 1998 | .btn-warning[disabled] { |
| 1999 | background-color: #f89406; |
| 2000 | } |
| 2001 | .btn-warning:active, .btn-warning.active { |
| 2002 | background-color: #c67605 \9; |
| 2003 | } |
| 2004 | .btn-danger { |
| 2005 | background-color: #da4f49; |
| 2006 | background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); |
| 2007 | background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); |
| 2008 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); |
| 2009 | background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); |
| 2010 | background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); |
| 2011 | background-image: linear-gradient(top, #ee5f5b, #bd362f); |
| 2012 | background-repeat: repeat-x; |
| 2013 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); |
| 2014 | border-color: #bd362f #bd362f #802420; |
| 2015 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 2016 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 2017 | } |
| 2018 | .btn-danger:hover, |
| 2019 | .btn-danger:active, |
| 2020 | .btn-danger.active, |
| 2021 | .btn-danger.disabled, |
| 2022 | .btn-danger[disabled] { |
| 2023 | background-color: #bd362f; |
| 2024 | } |
| 2025 | .btn-danger:active, .btn-danger.active { |
| 2026 | background-color: #942a25 \9; |
| 2027 | } |
| 2028 | .btn-success { |
| 2029 | background-color: #5bb75b; |
| 2030 | background-image: -moz-linear-gradient(top, #62c462, #51a351); |
| 2031 | background-image: -ms-linear-gradient(top, #62c462, #51a351); |
| 2032 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); |
| 2033 | background-image: -webkit-linear-gradient(top, #62c462, #51a351); |
| 2034 | background-image: -o-linear-gradient(top, #62c462, #51a351); |
| 2035 | background-image: linear-gradient(top, #62c462, #51a351); |
| 2036 | background-repeat: repeat-x; |
| 2037 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); |
| 2038 | border-color: #51a351 #51a351 #387038; |
| 2039 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 2040 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 2041 | } |
| 2042 | .btn-success:hover, |
| 2043 | .btn-success:active, |
| 2044 | .btn-success.active, |
| 2045 | .btn-success.disabled, |
| 2046 | .btn-success[disabled] { |
| 2047 | background-color: #51a351; |
| 2048 | } |
| 2049 | .btn-success:active, .btn-success.active { |
| 2050 | background-color: #408140 \9; |
| 2051 | } |
| 2052 | .btn-info { |
| 2053 | background-color: #49afcd; |
| 2054 | background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); |
| 2055 | background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); |
| 2056 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); |
| 2057 | background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); |
| 2058 | background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); |
| 2059 | background-image: linear-gradient(top, #5bc0de, #2f96b4); |
| 2060 | background-repeat: repeat-x; |
| 2061 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); |
| 2062 | border-color: #2f96b4 #2f96b4 #1f6377; |
| 2063 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 2064 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 2065 | } |
| 2066 | .btn-info:hover, |
| 2067 | .btn-info:active, |
| 2068 | .btn-info.active, |
| 2069 | .btn-info.disabled, |
| 2070 | .btn-info[disabled] { |
| 2071 | background-color: #2f96b4; |
| 2072 | } |
| 2073 | .btn-info:active, .btn-info.active { |
| 2074 | background-color: #24748c \9; |
| 2075 | } |
| 2076 | button.btn, input[type="submit"].btn { |
| 2077 | *padding-top: 2px; |
| 2078 | *padding-bottom: 2px; |
| 2079 | } |
| 2080 | button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2081 | padding: 0; |
| 2082 | border: 0; |
| 2083 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2084 | button.btn.large, input[type="submit"].btn.large { |
| 2085 | *padding-top: 7px; |
| 2086 | *padding-bottom: 7px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2087 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2088 | button.btn.small, input[type="submit"].btn.small { |
| 2089 | *padding-top: 3px; |
| 2090 | *padding-bottom: 3px; |
| 2091 | } |
| 2092 | .btn-group { |
| 2093 | position: relative; |
| 2094 | *zoom: 1; |
| 2095 | *margin-left: .3em; |
| 2096 | } |
| 2097 | .btn-group:before, .btn-group:after { |
| 2098 | display: table; |
| 2099 | content: ""; |
| 2100 | } |
| 2101 | .btn-group:after { |
| 2102 | clear: both; |
| 2103 | } |
| 2104 | .btn-group:first-child { |
| 2105 | *margin-left: 0; |
| 2106 | } |
| 2107 | .btn-group + .btn-group { |
| 2108 | margin-left: 5px; |
| 2109 | } |
| 2110 | .btn-toolbar { |
| 2111 | margin-top: 9px; |
| 2112 | margin-bottom: 9px; |
| 2113 | } |
| 2114 | .btn-toolbar .btn-group { |
| 2115 | display: inline-block; |
| 2116 | *display: inline; |
| 2117 | /* IE7 inline-block hack */ |
| 2118 | |
| 2119 | *zoom: 1; |
| 2120 | } |
| 2121 | .btn-group .btn { |
| 2122 | position: relative; |
| 2123 | float: left; |
| 2124 | margin-left: -1px; |
| 2125 | -webkit-border-radius: 0; |
| 2126 | -moz-border-radius: 0; |
| 2127 | border-radius: 0; |
| 2128 | } |
| 2129 | .btn-group .btn:first-child { |
| 2130 | margin-left: 0; |
| 2131 | -webkit-border-top-left-radius: 4px; |
| 2132 | -moz-border-radius-topleft: 4px; |
| 2133 | border-top-left-radius: 4px; |
| 2134 | -webkit-border-bottom-left-radius: 4px; |
| 2135 | -moz-border-radius-bottomleft: 4px; |
| 2136 | border-bottom-left-radius: 4px; |
| 2137 | } |
| 2138 | .btn-group .btn:last-child, .btn-group .dropdown-toggle { |
| 2139 | -webkit-border-top-right-radius: 4px; |
| 2140 | -moz-border-radius-topright: 4px; |
| 2141 | border-top-right-radius: 4px; |
| 2142 | -webkit-border-bottom-right-radius: 4px; |
| 2143 | -moz-border-radius-bottomright: 4px; |
| 2144 | border-bottom-right-radius: 4px; |
| 2145 | } |
| 2146 | .btn-group .btn.large:first-child { |
| 2147 | margin-left: 0; |
| 2148 | -webkit-border-top-left-radius: 6px; |
| 2149 | -moz-border-radius-topleft: 6px; |
| 2150 | border-top-left-radius: 6px; |
| 2151 | -webkit-border-bottom-left-radius: 6px; |
| 2152 | -moz-border-radius-bottomleft: 6px; |
| 2153 | border-bottom-left-radius: 6px; |
| 2154 | } |
| 2155 | .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle { |
| 2156 | -webkit-border-top-right-radius: 6px; |
| 2157 | -moz-border-radius-topright: 6px; |
| 2158 | border-top-right-radius: 6px; |
| 2159 | -webkit-border-bottom-right-radius: 6px; |
| 2160 | -moz-border-radius-bottomright: 6px; |
| 2161 | border-bottom-right-radius: 6px; |
| 2162 | } |
| 2163 | .btn-group .btn:hover, |
| 2164 | .btn-group .btn:focus, |
| 2165 | .btn-group .btn:active, |
| 2166 | .btn-group .btn.active { |
| 2167 | z-index: 2; |
| 2168 | } |
| 2169 | .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { |
| 2170 | outline: 0; |
| 2171 | } |
| 2172 | .btn-group .dropdown-toggle { |
| 2173 | padding-left: 8px; |
| 2174 | padding-right: 8px; |
| 2175 | -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2176 | -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2177 | box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2178 | *padding-top: 5px; |
| 2179 | *padding-bottom: 5px; |
| 2180 | } |
| 2181 | .btn-group.open { |
| 2182 | *z-index: 1000; |
| 2183 | } |
| 2184 | .btn-group.open .dropdown-menu { |
| 2185 | display: block; |
| 2186 | margin-top: 1px; |
| 2187 | -webkit-border-radius: 5px; |
| 2188 | -moz-border-radius: 5px; |
| 2189 | border-radius: 5px; |
| 2190 | } |
| 2191 | .btn-group.open .dropdown-toggle { |
| 2192 | background-image: none; |
| 2193 | -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2194 | -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2195 | box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 2196 | } |
| 2197 | .btn .caret { |
| 2198 | margin-top: 7px; |
| 2199 | margin-left: 0; |
| 2200 | } |
| 2201 | .btn:hover .caret, .open.btn-group .caret { |
| 2202 | opacity: 1; |
| 2203 | filter: alpha(opacity=100); |
| 2204 | } |
| 2205 | .btn-primary .caret, |
| 2206 | .btn-danger .caret, |
| 2207 | .btn-info .caret, |
| 2208 | .btn-success .caret { |
| 2209 | border-top-color: #ffffff; |
| 2210 | opacity: 0.75; |
| 2211 | filter: alpha(opacity=75); |
| 2212 | } |
| 2213 | .btn-small .caret { |
| 2214 | margin-top: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2215 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2216 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2217 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2218 | * lib/css/bootstrap/navbar.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2219 | */ |
| 2220 | .nav { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2221 | margin-left: 0; |
| 2222 | margin-bottom: 18px; |
| 2223 | list-style: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2224 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2225 | .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2226 | display: block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2227 | } |
| 2228 | .nav > li > a:hover { |
| 2229 | text-decoration: none; |
| 2230 | background-color: #eeeeee; |
| 2231 | } |
| 2232 | .nav-list { |
| 2233 | padding-left: 14px; |
| 2234 | padding-right: 14px; |
| 2235 | margin-bottom: 0; |
| 2236 | } |
| 2237 | .nav-list > li > a, .nav-list .nav-header { |
| 2238 | display: block; |
| 2239 | padding: 3px 15px; |
| 2240 | margin-left: -15px; |
| 2241 | margin-right: -15px; |
| 2242 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 2243 | } |
| 2244 | .nav-list .nav-header { |
| 2245 | font-size: 11px; |
| 2246 | font-weight: bold; |
| 2247 | line-height: 18px; |
| 2248 | color: #999999; |
| 2249 | text-transform: uppercase; |
| 2250 | } |
| 2251 | .nav-list > li + .nav-header { |
| 2252 | margin-top: 9px; |
| 2253 | } |
| 2254 | .nav-list .active > a, .nav-list .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2255 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2256 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); |
| 2257 | background-color: #0088cc; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2258 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2259 | .nav-list [class^="icon-"] { |
| 2260 | margin-right: 2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2261 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2262 | .nav-tabs, .nav-pills { |
| 2263 | *zoom: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2264 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2265 | .nav-tabs:before, |
| 2266 | .nav-pills:before, |
| 2267 | .nav-tabs:after, |
| 2268 | .nav-pills:after { |
| 2269 | display: table; |
| 2270 | content: ""; |
| 2271 | } |
| 2272 | .nav-tabs:after, .nav-pills:after { |
| 2273 | clear: both; |
| 2274 | } |
| 2275 | .nav-tabs > li, .nav-pills > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2276 | float: left; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2277 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2278 | .nav-tabs > li > a, .nav-pills > li > a { |
| 2279 | padding-right: 12px; |
| 2280 | padding-left: 12px; |
| 2281 | margin-right: 2px; |
| 2282 | line-height: 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2283 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2284 | .nav-tabs { |
| 2285 | border-bottom: 1px solid #ddd; |
| 2286 | } |
| 2287 | .nav-tabs > li { |
| 2288 | margin-bottom: -1px; |
| 2289 | } |
| 2290 | .nav-tabs > li > a { |
| 2291 | padding-top: 9px; |
| 2292 | padding-bottom: 9px; |
| 2293 | border: 1px solid transparent; |
| 2294 | -webkit-border-radius: 4px 4px 0 0; |
| 2295 | -moz-border-radius: 4px 4px 0 0; |
| 2296 | border-radius: 4px 4px 0 0; |
| 2297 | } |
| 2298 | .nav-tabs > li > a:hover { |
| 2299 | border-color: #eeeeee #eeeeee #dddddd; |
| 2300 | } |
| 2301 | .nav-tabs > .active > a, .nav-tabs > .active > a:hover { |
| 2302 | color: #555555; |
| 2303 | background-color: #ffffff; |
| 2304 | border: 1px solid #ddd; |
| 2305 | border-bottom-color: transparent; |
| 2306 | cursor: default; |
| 2307 | } |
| 2308 | .nav-pills > li > a { |
| 2309 | padding-top: 8px; |
| 2310 | padding-bottom: 8px; |
| 2311 | margin-top: 2px; |
| 2312 | margin-bottom: 2px; |
| 2313 | -webkit-border-radius: 5px; |
| 2314 | -moz-border-radius: 5px; |
| 2315 | border-radius: 5px; |
| 2316 | } |
| 2317 | .nav-pills .active > a, .nav-pills .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2318 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2319 | background-color: #0088cc; |
| 2320 | } |
| 2321 | .nav-stacked > li { |
| 2322 | float: none; |
| 2323 | } |
| 2324 | .nav-stacked > li > a { |
| 2325 | margin-right: 0; |
| 2326 | } |
| 2327 | .nav-tabs.nav-stacked { |
| 2328 | border-bottom: 0; |
| 2329 | } |
| 2330 | .nav-tabs.nav-stacked > li > a { |
| 2331 | border: 1px solid #ddd; |
| 2332 | -webkit-border-radius: 0; |
| 2333 | -moz-border-radius: 0; |
| 2334 | border-radius: 0; |
| 2335 | } |
| 2336 | .nav-tabs.nav-stacked > li:first-child > a { |
| 2337 | -webkit-border-radius: 4px 4px 0 0; |
| 2338 | -moz-border-radius: 4px 4px 0 0; |
| 2339 | border-radius: 4px 4px 0 0; |
| 2340 | } |
| 2341 | .nav-tabs.nav-stacked > li:last-child > a { |
| 2342 | -webkit-border-radius: 0 0 4px 4px; |
| 2343 | -moz-border-radius: 0 0 4px 4px; |
| 2344 | border-radius: 0 0 4px 4px; |
| 2345 | } |
| 2346 | .nav-tabs.nav-stacked > li > a:hover { |
| 2347 | border-color: #ddd; |
| 2348 | z-index: 2; |
| 2349 | } |
| 2350 | .nav-pills.nav-stacked > li > a { |
| 2351 | margin-bottom: 3px; |
| 2352 | } |
| 2353 | .nav-pills.nav-stacked > li:last-child > a { |
| 2354 | margin-bottom: 1px; |
| 2355 | } |
| 2356 | .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu { |
| 2357 | margin-top: 1px; |
| 2358 | border-width: 1px; |
| 2359 | } |
| 2360 | .nav-pills .dropdown-menu { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2361 | -webkit-border-radius: 4px; |
| 2362 | -moz-border-radius: 4px; |
| 2363 | border-radius: 4px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 2364 | } |
| 2365 | .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret { |
| 2366 | border-top-color: #0088cc; |
| 2367 | margin-top: 6px; |
| 2368 | } |
| 2369 | .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret { |
| 2370 | border-top-color: #005580; |
| 2371 | } |
| 2372 | .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret { |
| 2373 | border-top-color: #333333; |
| 2374 | } |
| 2375 | .nav > .dropdown.active > a:hover { |
| 2376 | color: #000000; |
| 2377 | cursor: pointer; |
| 2378 | } |
| 2379 | .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover { |
| 2380 | color: #ffffff; |
| 2381 | background-color: #999999; |
| 2382 | border-color: #999999; |
| 2383 | } |
| 2384 | .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret { |
| 2385 | border-top-color: #ffffff; |
| 2386 | opacity: 1; |
| 2387 | filter: alpha(opacity=100); |
| 2388 | } |
| 2389 | |
| 2390 | .navbar { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2391 | overflow: visible; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2392 | margin-bottom: 18px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2393 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2394 | .navbar-inner { |
| 2395 | padding-left: 20px; |
| 2396 | padding-right: 20px; |
| 2397 | background-color: #2c2c2c; |
| 2398 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 2399 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 2400 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 2401 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 2402 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 2403 | background-image: linear-gradient(top, #333333, #222222); |
| 2404 | background-repeat: repeat-x; |
| 2405 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 2406 | -webkit-border-radius: 4px; |
| 2407 | -moz-border-radius: 4px; |
| 2408 | border-radius: 4px; |
| 2409 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 2410 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 2411 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 2412 | } |
| 2413 | .btn-navbar { |
| 2414 | display: none; |
| 2415 | float: right; |
| 2416 | padding: 7px 10px; |
| 2417 | margin-left: 5px; |
| 2418 | margin-right: 5px; |
| 2419 | background-color: #2c2c2c; |
| 2420 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 2421 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 2422 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 2423 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 2424 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 2425 | background-image: linear-gradient(top, #333333, #222222); |
| 2426 | background-repeat: repeat-x; |
| 2427 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 2428 | border-color: #222222 #222222 #000000; |
| 2429 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 2430 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 2431 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 2432 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 2433 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 2434 | } |
| 2435 | .btn-navbar:hover, |
| 2436 | .btn-navbar:active, |
| 2437 | .btn-navbar.active, |
| 2438 | .btn-navbar.disabled, |
| 2439 | .btn-navbar[disabled] { |
| 2440 | background-color: #222222; |
| 2441 | } |
| 2442 | .btn-navbar:active, .btn-navbar.active { |
| 2443 | background-color: #080808 \9; |
| 2444 | } |
| 2445 | .btn-navbar .icon-bar { |
| 2446 | display: block; |
| 2447 | width: 18px; |
| 2448 | height: 2px; |
| 2449 | background-color: #f5f5f5; |
| 2450 | -webkit-border-radius: 1px; |
| 2451 | -moz-border-radius: 1px; |
| 2452 | border-radius: 1px; |
| 2453 | -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 2454 | -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 2455 | box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 2456 | } |
| 2457 | .btn-navbar .icon-bar + .icon-bar { |
| 2458 | margin-top: 3px; |
| 2459 | } |
| 2460 | .nav-collapse.collapse { |
| 2461 | height: auto; |
| 2462 | } |
| 2463 | .navbar .brand:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2464 | text-decoration: none; |
| 2465 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2466 | .navbar .brand { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2467 | float: left; |
| 2468 | display: block; |
| 2469 | padding: 8px 20px 12px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2470 | font-size: 20px; |
| 2471 | font-weight: 200; |
| 2472 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2473 | color: #ffffff; |
| 2474 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2475 | .navbar .navbar-text { |
| 2476 | margin-bottom: 0; |
| 2477 | line-height: 40px; |
| 2478 | color: #999999; |
| 2479 | } |
| 2480 | .navbar .navbar-text a:hover { |
| 2481 | color: #ffffff; |
| 2482 | background-color: transparent; |
| 2483 | } |
| 2484 | .navbar .btn, .navbar .btn-group { |
| 2485 | margin-top: 5px; |
| 2486 | } |
| 2487 | .navbar .btn-group .btn { |
| 2488 | margin-top: 0; |
| 2489 | } |
| 2490 | .navbar-form { |
| 2491 | margin-bottom: 0; |
| 2492 | *zoom: 1; |
| 2493 | } |
| 2494 | .navbar-form:before, .navbar-form:after { |
| 2495 | display: table; |
| 2496 | content: ""; |
| 2497 | } |
| 2498 | .navbar-form:after { |
| 2499 | clear: both; |
| 2500 | } |
| 2501 | .navbar-form input, .navbar-form select { |
| 2502 | display: inline-block; |
| 2503 | margin-top: 5px; |
| 2504 | margin-bottom: 0; |
| 2505 | } |
| 2506 | .navbar-form .radio, .navbar-form .checkbox { |
| 2507 | margin-top: 5px; |
| 2508 | } |
| 2509 | .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { |
| 2510 | margin-top: 3px; |
| 2511 | } |
| 2512 | .navbar-search { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2513 | position: relative; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2514 | float: left; |
| 2515 | margin-top: 6px; |
| 2516 | margin-bottom: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2517 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2518 | .navbar-search .search-query { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2519 | padding: 4px 9px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2520 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 2521 | font-size: 13px; |
| 2522 | font-weight: normal; |
| 2523 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2524 | color: #ffffff; |
| 2525 | color: rgba(255, 255, 255, 0.75); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2526 | background: #666; |
| 2527 | background: rgba(255, 255, 255, 0.3); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2528 | border: 1px solid #111; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2529 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 2530 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 2531 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2532 | -webkit-transition: none; |
| 2533 | -moz-transition: none; |
| 2534 | -ms-transition: none; |
| 2535 | -o-transition: none; |
| 2536 | transition: none; |
| 2537 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2538 | .navbar-search .search-query :-moz-placeholder { |
| 2539 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2540 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2541 | .navbar-search .search-query::-webkit-input-placeholder { |
| 2542 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2543 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2544 | .navbar-search .search-query:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2545 | color: #ffffff; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2546 | background-color: #999999; |
| 2547 | background-color: rgba(255, 255, 255, 0.5); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2548 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2549 | .navbar-search .search-query:focus, .navbar-search .search-query.focused { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2550 | padding: 5px 10px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2551 | color: #333333; |
| 2552 | text-shadow: 0 1px 0 #ffffff; |
| 2553 | background-color: #ffffff; |
| 2554 | border: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2555 | -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 2556 | -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 2557 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2558 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2559 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2560 | .navbar-fixed-top { |
| 2561 | position: fixed; |
| 2562 | top: 0; |
| 2563 | right: 0; |
| 2564 | left: 0; |
| 2565 | z-index: 1030; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2566 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2567 | .navbar-fixed-top .navbar-inner { |
| 2568 | padding-left: 0; |
| 2569 | padding-right: 0; |
| 2570 | -webkit-border-radius: 0; |
| 2571 | -moz-border-radius: 0; |
| 2572 | border-radius: 0; |
| 2573 | } |
| 2574 | .navbar .nav { |
| 2575 | position: relative; |
| 2576 | left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2577 | display: block; |
| 2578 | float: left; |
| 2579 | margin: 0 10px 0 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2580 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2581 | .navbar .nav.pull-right { |
| 2582 | float: right; |
| 2583 | } |
| 2584 | .navbar .nav > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2585 | display: block; |
| 2586 | float: left; |
| 2587 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2588 | .navbar .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2589 | float: none; |
| 2590 | padding: 10px 10px 11px; |
| 2591 | line-height: 19px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2592 | color: #999999; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2593 | text-decoration: none; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2594 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2595 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2596 | .navbar .nav > li > a:hover { |
| 2597 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2598 | color: #ffffff; |
| 2599 | text-decoration: none; |
| 2600 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2601 | .navbar .nav .active > a, .navbar .nav .active > a:hover { |
| 2602 | color: #ffffff; |
| 2603 | text-decoration: none; |
| 2604 | background-color: #222222; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2605 | background-color: rgba(0, 0, 0, 0.5); |
| 2606 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2607 | .navbar .divider-vertical { |
| 2608 | height: 40px; |
| 2609 | width: 1px; |
| 2610 | margin: 0 9px; |
| 2611 | overflow: hidden; |
| 2612 | background-color: #222222; |
| 2613 | border-right: 1px solid #333333; |
| 2614 | } |
| 2615 | .navbar .nav.pull-right { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2616 | margin-left: 10px; |
| 2617 | margin-right: 0; |
| 2618 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2619 | .navbar .dropdown-menu { |
| 2620 | margin-top: 1px; |
| 2621 | -webkit-border-radius: 4px; |
| 2622 | -moz-border-radius: 4px; |
| 2623 | border-radius: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2624 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2625 | .navbar .dropdown-menu:before { |
| 2626 | content: ''; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2627 | display: inline-block; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2628 | border-left: 7px solid transparent; |
| 2629 | border-right: 7px solid transparent; |
| 2630 | border-bottom: 7px solid #ccc; |
| 2631 | border-bottom-color: rgba(0, 0, 0, 0.2); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2632 | position: absolute; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2633 | top: -7px; |
| 2634 | left: 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2635 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2636 | .navbar .dropdown-menu:after { |
| 2637 | content: ''; |
| 2638 | display: inline-block; |
| 2639 | border-left: 6px solid transparent; |
| 2640 | border-right: 6px solid transparent; |
| 2641 | border-bottom: 6px solid #ffffff; |
| 2642 | position: absolute; |
| 2643 | top: -6px; |
| 2644 | left: 10px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2645 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2646 | .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret { |
| 2647 | border-top-color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2648 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2649 | .navbar .nav .active .caret { |
| 2650 | opacity: 1; |
| 2651 | filter: alpha(opacity=100); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2652 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2653 | .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle { |
| 2654 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2655 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2656 | .navbar .nav .active > .dropdown-toggle:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2657 | color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2658 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2659 | .navbar .nav.pull-right .dropdown-menu { |
| 2660 | left: auto; |
| 2661 | right: 0; |
| 2662 | } |
| 2663 | .navbar .nav.pull-right .dropdown-menu:before { |
| 2664 | left: auto; |
| 2665 | right: 12px; |
| 2666 | } |
| 2667 | .navbar .nav.pull-right .dropdown-menu:after { |
| 2668 | left: auto; |
| 2669 | right: 13px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2670 | } |
| 2671 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2672 | /* ajax spinner */ |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2673 | .navbar #spinner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2674 | display: block; |
| 2675 | float: right; |
| 2676 | width: 20px; |
| 2677 | margin-bottom: -5px; |
| 2678 | margin-top: 10px; |
| 2679 | visibility: hidden; |
| 2680 | } |
| 2681 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2682 | .navbar-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2683 | padding: 0px 20px; |
| 2684 | } |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 2685 | |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2686 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 2687 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2688 | * lib/css/bootstrap/dropdown.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2689 | */ |
| 2690 | .dropdown { |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2691 | position: relative; |
| 2692 | } |
| 2693 | .dropdown-toggle { |
| 2694 | *margin-bottom: -3px; |
| 2695 | } |
| 2696 | .dropdown-toggle:active, .open .dropdown-toggle { |
| 2697 | outline: 0; |
| 2698 | } |
| 2699 | .caret { |
| 2700 | display: inline-block; |
| 2701 | width: 0; |
| 2702 | height: 0; |
| 2703 | text-indent: -99999px; |
| 2704 | *text-indent: 0; |
| 2705 | vertical-align: top; |
| 2706 | border-left: 4px solid transparent; |
| 2707 | border-right: 4px solid transparent; |
| 2708 | border-top: 4px solid #000000; |
| 2709 | opacity: 0.3; |
| 2710 | filter: alpha(opacity=30); |
| 2711 | content: "\2193"; |
| 2712 | } |
| 2713 | .dropdown .caret { |
| 2714 | margin-top: 8px; |
| 2715 | margin-left: 2px; |
| 2716 | } |
| 2717 | .dropdown:hover .caret, .open.dropdown .caret { |
| 2718 | opacity: 1; |
| 2719 | filter: alpha(opacity=100); |
| 2720 | } |
| 2721 | .dropdown-menu { |
| 2722 | position: absolute; |
| 2723 | top: 100%; |
| 2724 | left: 0; |
| 2725 | z-index: 1000; |
| 2726 | float: left; |
| 2727 | display: none; |
| 2728 | min-width: 160px; |
| 2729 | max-width: 220px; |
| 2730 | _width: 160px; |
| 2731 | padding: 4px 0; |
| 2732 | margin: 0; |
| 2733 | list-style: none; |
| 2734 | background-color: #ffffff; |
| 2735 | border-color: #ccc; |
| 2736 | border-color: rgba(0, 0, 0, 0.2); |
| 2737 | border-style: solid; |
| 2738 | border-width: 1px; |
| 2739 | -webkit-border-radius: 0 0 5px 5px; |
| 2740 | -moz-border-radius: 0 0 5px 5px; |
| 2741 | border-radius: 0 0 5px 5px; |
| 2742 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 2743 | -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 2744 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 2745 | -webkit-background-clip: padding-box; |
| 2746 | -moz-background-clip: padding; |
| 2747 | background-clip: padding-box; |
| 2748 | *border-right-width: 2px; |
| 2749 | *border-bottom-width: 2px; |
| 2750 | } |
| 2751 | .dropdown-menu.bottom-up { |
| 2752 | top: auto; |
| 2753 | bottom: 100%; |
| 2754 | margin-bottom: 2px; |
| 2755 | } |
| 2756 | .dropdown-menu .divider { |
| 2757 | height: 1px; |
| 2758 | margin: 5px 1px; |
| 2759 | overflow: hidden; |
| 2760 | background-color: #e5e5e5; |
| 2761 | border-bottom: 1px solid #ffffff; |
| 2762 | *width: 100%; |
| 2763 | *margin: -5px 0 5px; |
| 2764 | } |
| 2765 | .dropdown-menu a { |
| 2766 | display: block; |
| 2767 | padding: 3px 15px; |
| 2768 | clear: both; |
| 2769 | font-weight: normal; |
| 2770 | line-height: 18px; |
| 2771 | color: #555555; |
| 2772 | white-space: nowrap; |
| 2773 | } |
| 2774 | .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover { |
| 2775 | color: #ffffff; |
| 2776 | text-decoration: none; |
| 2777 | background-color: #0088cc; |
| 2778 | } |
| 2779 | .dropdown.open { |
| 2780 | *z-index: 1000; |
| 2781 | } |
| 2782 | .dropdown.open .dropdown-toggle { |
| 2783 | color: #ffffff; |
| 2784 | background: #ccc; |
| 2785 | background: rgba(0, 0, 0, 0.3); |
| 2786 | } |
| 2787 | .dropdown.open .dropdown-menu { |
| 2788 | display: block; |
| 2789 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2790 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 2791 | /* |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 2792 | * lib/css/bootstrap/tooltip.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2793 | */ |
| 2794 | .tooltip { |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 2795 | position: absolute; |
| 2796 | z-index: 1020; |
| 2797 | display: block; |
| 2798 | visibility: visible; |
| 2799 | padding: 5px; |
| 2800 | font-size: 11px; |
| 2801 | opacity: 0; |
| 2802 | filter: alpha(opacity=0); |
| 2803 | } |
| 2804 | .tooltip.in { |
| 2805 | opacity: 0.8; |
| 2806 | filter: alpha(opacity=80); |
| 2807 | } |
| 2808 | .tooltip.top { |
| 2809 | margin-top: -2px; |
| 2810 | } |
| 2811 | .tooltip.right { |
| 2812 | margin-left: 2px; |
| 2813 | } |
| 2814 | .tooltip.bottom { |
| 2815 | margin-top: 2px; |
| 2816 | } |
| 2817 | .tooltip.left { |
| 2818 | margin-left: -2px; |
| 2819 | } |
| 2820 | .tooltip.top .tooltip-arrow { |
| 2821 | bottom: 0; |
| 2822 | left: 50%; |
| 2823 | margin-left: -5px; |
| 2824 | border-left: 5px solid transparent; |
| 2825 | border-right: 5px solid transparent; |
| 2826 | border-top: 5px solid #000000; |
| 2827 | } |
| 2828 | .tooltip.left .tooltip-arrow { |
| 2829 | top: 50%; |
| 2830 | right: 0; |
| 2831 | margin-top: -5px; |
| 2832 | border-top: 5px solid transparent; |
| 2833 | border-bottom: 5px solid transparent; |
| 2834 | border-left: 5px solid #000000; |
| 2835 | } |
| 2836 | .tooltip.bottom .tooltip-arrow { |
| 2837 | top: 0; |
| 2838 | left: 50%; |
| 2839 | margin-left: -5px; |
| 2840 | border-left: 5px solid transparent; |
| 2841 | border-right: 5px solid transparent; |
| 2842 | border-bottom: 5px solid #000000; |
| 2843 | } |
| 2844 | .tooltip.right .tooltip-arrow { |
| 2845 | top: 50%; |
| 2846 | left: 0; |
| 2847 | margin-top: -5px; |
| 2848 | border-top: 5px solid transparent; |
| 2849 | border-bottom: 5px solid transparent; |
| 2850 | border-right: 5px solid #000000; |
| 2851 | } |
| 2852 | .tooltip-inner { |
| 2853 | max-width: 200px; |
| 2854 | padding: 3px 8px; |
| 2855 | color: #ffffff; |
| 2856 | text-align: center; |
| 2857 | text-decoration: none; |
| 2858 | background-color: #000000; |
| 2859 | -webkit-border-radius: 4px; |
| 2860 | -moz-border-radius: 4px; |
| 2861 | border-radius: 4px; |
| 2862 | } |
| 2863 | .tooltip-arrow { |
| 2864 | position: absolute; |
| 2865 | width: 0; |
| 2866 | height: 0; |
| 2867 | } |
| 2868 | .popover { |
| 2869 | position: absolute; |
| 2870 | top: 0; |
| 2871 | left: 0; |
| 2872 | z-index: 1010; |
| 2873 | display: none; |
| 2874 | padding: 5px; |
| 2875 | } |
| 2876 | .popover.top { |
| 2877 | margin-top: -5px; |
| 2878 | } |
| 2879 | .popover.right { |
| 2880 | margin-left: 5px; |
| 2881 | } |
| 2882 | .popover.bottom { |
| 2883 | margin-top: 5px; |
| 2884 | } |
| 2885 | .popover.left { |
| 2886 | margin-left: -5px; |
| 2887 | } |
| 2888 | .popover.top .arrow { |
| 2889 | bottom: 0; |
| 2890 | left: 50%; |
| 2891 | margin-left: -5px; |
| 2892 | border-left: 5px solid transparent; |
| 2893 | border-right: 5px solid transparent; |
| 2894 | border-top: 5px solid #000000; |
| 2895 | } |
| 2896 | .popover.right .arrow { |
| 2897 | top: 50%; |
| 2898 | left: 0; |
| 2899 | margin-top: -5px; |
| 2900 | border-top: 5px solid transparent; |
| 2901 | border-bottom: 5px solid transparent; |
| 2902 | border-right: 5px solid #000000; |
| 2903 | } |
| 2904 | .popover.bottom .arrow { |
| 2905 | top: 0; |
| 2906 | left: 50%; |
| 2907 | margin-left: -5px; |
| 2908 | border-left: 5px solid transparent; |
| 2909 | border-right: 5px solid transparent; |
| 2910 | border-bottom: 5px solid #000000; |
| 2911 | } |
| 2912 | .popover.left .arrow { |
| 2913 | top: 50%; |
| 2914 | right: 0; |
| 2915 | margin-top: -5px; |
| 2916 | border-top: 5px solid transparent; |
| 2917 | border-bottom: 5px solid transparent; |
| 2918 | border-left: 5px solid #000000; |
| 2919 | } |
| 2920 | .popover .arrow { |
| 2921 | position: absolute; |
| 2922 | width: 0; |
| 2923 | height: 0; |
| 2924 | } |
| 2925 | .popover-inner { |
| 2926 | padding: 3px; |
| 2927 | width: 280px; |
| 2928 | overflow: hidden; |
| 2929 | background: #000000; |
| 2930 | background: rgba(0, 0, 0, 0.8); |
| 2931 | -webkit-border-radius: 6px; |
| 2932 | -moz-border-radius: 6px; |
| 2933 | border-radius: 6px; |
| 2934 | -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 2935 | -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 2936 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 2937 | } |
| 2938 | .popover-title { |
| 2939 | padding: 9px 15px; |
| 2940 | line-height: 1; |
| 2941 | background-color: #f5f5f5; |
| 2942 | border-bottom: 1px solid #eee; |
| 2943 | -webkit-border-radius: 3px 3px 0 0; |
| 2944 | -moz-border-radius: 3px 3px 0 0; |
| 2945 | border-radius: 3px 3px 0 0; |
| 2946 | } |
| 2947 | .popover-content { |
| 2948 | padding: 14px; |
| 2949 | background-color: #ffffff; |
| 2950 | -webkit-border-radius: 0 0 3px 3px; |
| 2951 | -moz-border-radius: 0 0 3px 3px; |
| 2952 | border-radius: 0 0 3px 3px; |
| 2953 | -webkit-background-clip: padding-box; |
| 2954 | -moz-background-clip: padding-box; |
| 2955 | background-clip: padding-box; |
| 2956 | } |
| 2957 | .popover-content p, .popover-content ul, .popover-content ol { |
| 2958 | margin-bottom: 0; |
| 2959 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2960 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 2961 | /* |
Rushabh Mehta | 2886b95 | 2012-02-24 11:26:31 +0530 | [diff] [blame] | 2962 | * lib/css/bootstrap/label.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 2963 | */ |
| 2964 | .label { |
Rushabh Mehta | 2886b95 | 2012-02-24 11:26:31 +0530 | [diff] [blame] | 2965 | padding: 2px 4px 3px; |
| 2966 | font-size: 11.049999999999999px; |
| 2967 | font-weight: bold; |
| 2968 | color: #ffffff; |
| 2969 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 2970 | background-color: #999999; |
| 2971 | -webkit-border-radius: 3px; |
| 2972 | -moz-border-radius: 3px; |
| 2973 | border-radius: 3px; |
| 2974 | } |
| 2975 | .label:hover { |
| 2976 | color: #ffffff; |
| 2977 | text-decoration: none; |
| 2978 | } |
| 2979 | .label-important { |
| 2980 | background-color: #b94a48; |
| 2981 | } |
| 2982 | .label-important:hover { |
| 2983 | background-color: #953b39; |
| 2984 | } |
| 2985 | .label-warning { |
| 2986 | background-color: #f89406; |
| 2987 | } |
| 2988 | .label-warning:hover { |
| 2989 | background-color: #c67605; |
| 2990 | } |
| 2991 | .label-success { |
| 2992 | background-color: #468847; |
| 2993 | } |
| 2994 | .label-success:hover { |
| 2995 | background-color: #356635; |
| 2996 | } |
| 2997 | .label-info { |
| 2998 | background-color: #3a87ad; |
| 2999 | } |
| 3000 | .label-info:hover { |
| 3001 | background-color: #2d6987; |
| 3002 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 3003 | |
Rushabh Mehta | 2886b95 | 2012-02-24 11:26:31 +0530 | [diff] [blame] | 3004 | /* |
| 3005 | * lib/css/bootstrap/icons.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 3006 | */ |
| 3007 | [class^="icon-"], [class*=" icon-"] { |
Rushabh Mehta | 2886b95 | 2012-02-24 11:26:31 +0530 | [diff] [blame] | 3008 | display: inline-block; |
| 3009 | width: 14px; |
| 3010 | height: 14px; |
| 3011 | line-height: 14px; |
| 3012 | vertical-align: text-top; |
| 3013 | background-image: url("../lib/images/icons/glyphicons-halflings.png"); |
| 3014 | background-position: 14px 14px; |
| 3015 | background-repeat: no-repeat; |
| 3016 | *margin-right: .3em; |
| 3017 | } |
| 3018 | [class^="icon-"]:last-child, [class*=" icon-"]:last-child { |
| 3019 | *margin-left: 0; |
| 3020 | } |
| 3021 | .icon-white { |
| 3022 | background-image: url("../lib/images/icons/glyphicons-halflings-white.png"); |
| 3023 | } |
| 3024 | .icon-glass { |
| 3025 | background-position: 0 0; |
| 3026 | } |
| 3027 | .icon-music { |
| 3028 | background-position: -24px 0; |
| 3029 | } |
| 3030 | .icon-search { |
| 3031 | background-position: -48px 0; |
| 3032 | } |
| 3033 | .icon-envelope { |
| 3034 | background-position: -72px 0; |
| 3035 | } |
| 3036 | .icon-heart { |
| 3037 | background-position: -96px 0; |
| 3038 | } |
| 3039 | .icon-star { |
| 3040 | background-position: -120px 0; |
| 3041 | } |
| 3042 | .icon-star-empty { |
| 3043 | background-position: -144px 0; |
| 3044 | } |
| 3045 | .icon-user { |
| 3046 | background-position: -168px 0; |
| 3047 | } |
| 3048 | .icon-film { |
| 3049 | background-position: -192px 0; |
| 3050 | } |
| 3051 | .icon-th-large { |
| 3052 | background-position: -216px 0; |
| 3053 | } |
| 3054 | .icon-th { |
| 3055 | background-position: -240px 0; |
| 3056 | } |
| 3057 | .icon-th-list { |
| 3058 | background-position: -264px 0; |
| 3059 | } |
| 3060 | .icon-ok { |
| 3061 | background-position: -288px 0; |
| 3062 | } |
| 3063 | .icon-remove { |
| 3064 | background-position: -312px 0; |
| 3065 | } |
| 3066 | .icon-zoom-in { |
| 3067 | background-position: -336px 0; |
| 3068 | } |
| 3069 | .icon-zoom-out { |
| 3070 | background-position: -360px 0; |
| 3071 | } |
| 3072 | .icon-off { |
| 3073 | background-position: -384px 0; |
| 3074 | } |
| 3075 | .icon-signal { |
| 3076 | background-position: -408px 0; |
| 3077 | } |
| 3078 | .icon-cog { |
| 3079 | background-position: -432px 0; |
| 3080 | } |
| 3081 | .icon-trash { |
| 3082 | background-position: -456px 0; |
| 3083 | } |
| 3084 | .icon-home { |
| 3085 | background-position: 0 -24px; |
| 3086 | } |
| 3087 | .icon-file { |
| 3088 | background-position: -24px -24px; |
| 3089 | } |
| 3090 | .icon-time { |
| 3091 | background-position: -48px -24px; |
| 3092 | } |
| 3093 | .icon-road { |
| 3094 | background-position: -72px -24px; |
| 3095 | } |
| 3096 | .icon-download-alt { |
| 3097 | background-position: -96px -24px; |
| 3098 | } |
| 3099 | .icon-download { |
| 3100 | background-position: -120px -24px; |
| 3101 | } |
| 3102 | .icon-upload { |
| 3103 | background-position: -144px -24px; |
| 3104 | } |
| 3105 | .icon-inbox { |
| 3106 | background-position: -168px -24px; |
| 3107 | } |
| 3108 | .icon-play-circle { |
| 3109 | background-position: -192px -24px; |
| 3110 | } |
| 3111 | .icon-repeat { |
| 3112 | background-position: -216px -24px; |
| 3113 | } |
| 3114 | .icon-refresh { |
| 3115 | background-position: -240px -24px; |
| 3116 | } |
| 3117 | .icon-list-alt { |
| 3118 | background-position: -264px -24px; |
| 3119 | } |
| 3120 | .icon-lock { |
| 3121 | background-position: -287px -24px; |
| 3122 | } |
| 3123 | .icon-flag { |
| 3124 | background-position: -312px -24px; |
| 3125 | } |
| 3126 | .icon-headphones { |
| 3127 | background-position: -336px -24px; |
| 3128 | } |
| 3129 | .icon-volume-off { |
| 3130 | background-position: -360px -24px; |
| 3131 | } |
| 3132 | .icon-volume-down { |
| 3133 | background-position: -384px -24px; |
| 3134 | } |
| 3135 | .icon-volume-up { |
| 3136 | background-position: -408px -24px; |
| 3137 | } |
| 3138 | .icon-qrcode { |
| 3139 | background-position: -432px -24px; |
| 3140 | } |
| 3141 | .icon-barcode { |
| 3142 | background-position: -456px -24px; |
| 3143 | } |
| 3144 | .icon-tag { |
| 3145 | background-position: 0 -48px; |
| 3146 | } |
| 3147 | .icon-tags { |
| 3148 | background-position: -25px -48px; |
| 3149 | } |
| 3150 | .icon-book { |
| 3151 | background-position: -48px -48px; |
| 3152 | } |
| 3153 | .icon-bookmark { |
| 3154 | background-position: -72px -48px; |
| 3155 | } |
| 3156 | .icon-print { |
| 3157 | background-position: -96px -48px; |
| 3158 | } |
| 3159 | .icon-camera { |
| 3160 | background-position: -120px -48px; |
| 3161 | } |
| 3162 | .icon-font { |
| 3163 | background-position: -144px -48px; |
| 3164 | } |
| 3165 | .icon-bold { |
| 3166 | background-position: -167px -48px; |
| 3167 | } |
| 3168 | .icon-italic { |
| 3169 | background-position: -192px -48px; |
| 3170 | } |
| 3171 | .icon-text-height { |
| 3172 | background-position: -216px -48px; |
| 3173 | } |
| 3174 | .icon-text-width { |
| 3175 | background-position: -240px -48px; |
| 3176 | } |
| 3177 | .icon-align-left { |
| 3178 | background-position: -264px -48px; |
| 3179 | } |
| 3180 | .icon-align-center { |
| 3181 | background-position: -288px -48px; |
| 3182 | } |
| 3183 | .icon-align-right { |
| 3184 | background-position: -312px -48px; |
| 3185 | } |
| 3186 | .icon-align-justify { |
| 3187 | background-position: -336px -48px; |
| 3188 | } |
| 3189 | .icon-list { |
| 3190 | background-position: -360px -48px; |
| 3191 | } |
| 3192 | .icon-indent-left { |
| 3193 | background-position: -384px -48px; |
| 3194 | } |
| 3195 | .icon-indent-right { |
| 3196 | background-position: -408px -48px; |
| 3197 | } |
| 3198 | .icon-facetime-video { |
| 3199 | background-position: -432px -48px; |
| 3200 | } |
| 3201 | .icon-picture { |
| 3202 | background-position: -456px -48px; |
| 3203 | } |
| 3204 | .icon-pencil { |
| 3205 | background-position: 0 -72px; |
| 3206 | } |
| 3207 | .icon-map-marker { |
| 3208 | background-position: -24px -72px; |
| 3209 | } |
| 3210 | .icon-adjust { |
| 3211 | background-position: -48px -72px; |
| 3212 | } |
| 3213 | .icon-tint { |
| 3214 | background-position: -72px -72px; |
| 3215 | } |
| 3216 | .icon-edit { |
| 3217 | background-position: -96px -72px; |
| 3218 | } |
| 3219 | .icon-share { |
| 3220 | background-position: -120px -72px; |
| 3221 | } |
| 3222 | .icon-check { |
| 3223 | background-position: -144px -72px; |
| 3224 | } |
| 3225 | .icon-move { |
| 3226 | background-position: -168px -72px; |
| 3227 | } |
| 3228 | .icon-step-backward { |
| 3229 | background-position: -192px -72px; |
| 3230 | } |
| 3231 | .icon-fast-backward { |
| 3232 | background-position: -216px -72px; |
| 3233 | } |
| 3234 | .icon-backward { |
| 3235 | background-position: -240px -72px; |
| 3236 | } |
| 3237 | .icon-play { |
| 3238 | background-position: -264px -72px; |
| 3239 | } |
| 3240 | .icon-pause { |
| 3241 | background-position: -288px -72px; |
| 3242 | } |
| 3243 | .icon-stop { |
| 3244 | background-position: -312px -72px; |
| 3245 | } |
| 3246 | .icon-forward { |
| 3247 | background-position: -336px -72px; |
| 3248 | } |
| 3249 | .icon-fast-forward { |
| 3250 | background-position: -360px -72px; |
| 3251 | } |
| 3252 | .icon-step-forward { |
| 3253 | background-position: -384px -72px; |
| 3254 | } |
| 3255 | .icon-eject { |
| 3256 | background-position: -408px -72px; |
| 3257 | } |
| 3258 | .icon-chevron-left { |
| 3259 | background-position: -432px -72px; |
| 3260 | } |
| 3261 | .icon-chevron-right { |
| 3262 | background-position: -456px -72px; |
| 3263 | } |
| 3264 | .icon-plus-sign { |
| 3265 | background-position: 0 -96px; |
| 3266 | } |
| 3267 | .icon-minus-sign { |
| 3268 | background-position: -24px -96px; |
| 3269 | } |
| 3270 | .icon-remove-sign { |
| 3271 | background-position: -48px -96px; |
| 3272 | } |
| 3273 | .icon-ok-sign { |
| 3274 | background-position: -72px -96px; |
| 3275 | } |
| 3276 | .icon-question-sign { |
| 3277 | background-position: -96px -96px; |
| 3278 | } |
| 3279 | .icon-info-sign { |
| 3280 | background-position: -120px -96px; |
| 3281 | } |
| 3282 | .icon-screenshot { |
| 3283 | background-position: -144px -96px; |
| 3284 | } |
| 3285 | .icon-remove-circle { |
| 3286 | background-position: -168px -96px; |
| 3287 | } |
| 3288 | .icon-ok-circle { |
| 3289 | background-position: -192px -96px; |
| 3290 | } |
| 3291 | .icon-ban-circle { |
| 3292 | background-position: -216px -96px; |
| 3293 | } |
| 3294 | .icon-arrow-left { |
| 3295 | background-position: -240px -96px; |
| 3296 | } |
| 3297 | .icon-arrow-right { |
| 3298 | background-position: -264px -96px; |
| 3299 | } |
| 3300 | .icon-arrow-up { |
| 3301 | background-position: -289px -96px; |
| 3302 | } |
| 3303 | .icon-arrow-down { |
| 3304 | background-position: -312px -96px; |
| 3305 | } |
| 3306 | .icon-share-alt { |
| 3307 | background-position: -336px -96px; |
| 3308 | } |
| 3309 | .icon-resize-full { |
| 3310 | background-position: -360px -96px; |
| 3311 | } |
| 3312 | .icon-resize-small { |
| 3313 | background-position: -384px -96px; |
| 3314 | } |
| 3315 | .icon-plus { |
| 3316 | background-position: -408px -96px; |
| 3317 | } |
| 3318 | .icon-minus { |
| 3319 | background-position: -433px -96px; |
| 3320 | } |
| 3321 | .icon-asterisk { |
| 3322 | background-position: -456px -96px; |
| 3323 | } |
| 3324 | .icon-exclamation-sign { |
| 3325 | background-position: 0 -120px; |
| 3326 | } |
| 3327 | .icon-gift { |
| 3328 | background-position: -24px -120px; |
| 3329 | } |
| 3330 | .icon-leaf { |
| 3331 | background-position: -48px -120px; |
| 3332 | } |
| 3333 | .icon-fire { |
| 3334 | background-position: -72px -120px; |
| 3335 | } |
| 3336 | .icon-eye-open { |
| 3337 | background-position: -96px -120px; |
| 3338 | } |
| 3339 | .icon-eye-close { |
| 3340 | background-position: -120px -120px; |
| 3341 | } |
| 3342 | .icon-warning-sign { |
| 3343 | background-position: -144px -120px; |
| 3344 | } |
| 3345 | .icon-plane { |
| 3346 | background-position: -168px -120px; |
| 3347 | } |
| 3348 | .icon-calendar { |
| 3349 | background-position: -192px -120px; |
| 3350 | } |
| 3351 | .icon-random { |
| 3352 | background-position: -216px -120px; |
| 3353 | } |
| 3354 | .icon-comment { |
| 3355 | background-position: -240px -120px; |
| 3356 | } |
| 3357 | .icon-magnet { |
| 3358 | background-position: -264px -120px; |
| 3359 | } |
| 3360 | .icon-chevron-up { |
| 3361 | background-position: -288px -120px; |
| 3362 | } |
| 3363 | .icon-chevron-down { |
| 3364 | background-position: -313px -119px; |
| 3365 | } |
| 3366 | .icon-retweet { |
| 3367 | background-position: -336px -120px; |
| 3368 | } |
| 3369 | .icon-shopping-cart { |
| 3370 | background-position: -360px -120px; |
| 3371 | } |
| 3372 | .icon-folder-close { |
| 3373 | background-position: -384px -120px; |
| 3374 | } |
| 3375 | .icon-folder-open { |
| 3376 | background-position: -408px -120px; |
| 3377 | } |
| 3378 | .icon-resize-vertical { |
| 3379 | background-position: -432px -119px; |
| 3380 | } |
| 3381 | .icon-resize-horizontal { |
| 3382 | background-position: -456px -118px; |
| 3383 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 3384 | |
Rushabh Mehta | 2886b95 | 2012-02-24 11:26:31 +0530 | [diff] [blame] | 3385 | /* |
Rushabh Mehta | d48417c | 2012-03-19 18:42:13 +0530 | [diff] [blame] | 3386 | * lib/css/bootstrap/popover.css |
| 3387 | */ |
| 3388 | .popover { |
| 3389 | position: absolute; |
| 3390 | top: 0; |
| 3391 | left: 0; |
| 3392 | z-index: 1010; |
| 3393 | display: none; |
| 3394 | padding: 5px; |
| 3395 | } |
| 3396 | .popover.top { |
| 3397 | margin-top: -5px; |
| 3398 | } |
| 3399 | .popover.right { |
| 3400 | margin-left: 5px; |
| 3401 | } |
| 3402 | .popover.bottom { |
| 3403 | margin-top: 5px; |
| 3404 | } |
| 3405 | .popover.left { |
| 3406 | margin-left: -5px; |
| 3407 | } |
| 3408 | .popover.top .arrow { |
| 3409 | bottom: 0; |
| 3410 | left: 50%; |
| 3411 | margin-left: -5px; |
| 3412 | border-left: 5px solid transparent; |
| 3413 | border-right: 5px solid transparent; |
| 3414 | border-top: 5px solid #000000; |
| 3415 | } |
| 3416 | .popover.right .arrow { |
| 3417 | top: 50%; |
| 3418 | left: 0; |
| 3419 | margin-top: -5px; |
| 3420 | border-top: 5px solid transparent; |
| 3421 | border-bottom: 5px solid transparent; |
| 3422 | border-right: 5px solid #000000; |
| 3423 | } |
| 3424 | .popover.bottom .arrow { |
| 3425 | top: 0; |
| 3426 | left: 50%; |
| 3427 | margin-left: -5px; |
| 3428 | border-left: 5px solid transparent; |
| 3429 | border-right: 5px solid transparent; |
| 3430 | border-bottom: 5px solid #000000; |
| 3431 | } |
| 3432 | .popover.left .arrow { |
| 3433 | top: 50%; |
| 3434 | right: 0; |
| 3435 | margin-top: -5px; |
| 3436 | border-top: 5px solid transparent; |
| 3437 | border-bottom: 5px solid transparent; |
| 3438 | border-left: 5px solid #000000; |
| 3439 | } |
| 3440 | .popover .arrow { |
| 3441 | position: absolute; |
| 3442 | width: 0; |
| 3443 | height: 0; |
| 3444 | } |
| 3445 | .popover-inner { |
| 3446 | padding: 3px; |
| 3447 | width: 280px; |
| 3448 | overflow: hidden; |
| 3449 | background: #000000; |
| 3450 | background: rgba(0, 0, 0, 0.8); |
| 3451 | -webkit-border-radius: 6px; |
| 3452 | -moz-border-radius: 6px; |
| 3453 | border-radius: 6px; |
| 3454 | -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 3455 | -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 3456 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 3457 | } |
| 3458 | .popover-title { |
| 3459 | padding: 9px 15px; |
| 3460 | line-height: 1; |
| 3461 | background-color: #f5f5f5; |
| 3462 | border-bottom: 1px solid #eee; |
| 3463 | -webkit-border-radius: 3px 3px 0 0; |
| 3464 | -moz-border-radius: 3px 3px 0 0; |
| 3465 | border-radius: 3px 3px 0 0; |
| 3466 | } |
| 3467 | .popover-content { |
| 3468 | padding: 14px; |
| 3469 | background-color: #ffffff; |
| 3470 | -webkit-border-radius: 0 0 3px 3px; |
| 3471 | -moz-border-radius: 0 0 3px 3px; |
| 3472 | border-radius: 0 0 3px 3px; |
| 3473 | -webkit-background-clip: padding-box; |
| 3474 | -moz-background-clip: padding-box; |
| 3475 | background-clip: padding-box; |
| 3476 | } |
| 3477 | .popover-content p, .popover-content ul, .popover-content ol { |
| 3478 | margin-bottom: 0; |
| 3479 | } |
| 3480 | |
| 3481 | /* |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3482 | * erpnext/startup/startup.css |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 3483 | */ |
| 3484 | h1, h2, h3, h4, h5 { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 3485 | font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif; |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 3486 | font-weight: normal; |
Rushabh Mehta | d2cec5b | 2012-04-10 11:51:08 +0530 | [diff] [blame] | 3487 | margin-top: 0.2em; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3488 | } |
| 3489 | |
| 3490 | body { |
Rushabh Mehta | b6f8088 | 2012-03-23 14:19:49 +0530 | [diff] [blame] | 3491 | font-family: "Open Sans", Helvetica, "Helvetica Neue", sans-serif; |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 3492 | font-size: 13px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3493 | } |
| 3494 | |
| 3495 | span, div, td, input, textarea, button, select { |
| 3496 | font-family: inherit; |
| 3497 | } |
| 3498 | |
| 3499 | body { |
Rushabh Mehta | 7af1c88 | 2012-03-22 11:59:46 +0530 | [diff] [blame] | 3500 | background: url(../images/redbeech.jpg) repeat; |
Rushabh Mehta | b43f949 | 2012-04-08 20:33:51 +0530 | [diff] [blame] | 3501 | color: #616161; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3502 | } |
| 3503 | |
Rushabh Mehta | 983a171 | 2012-03-21 13:35:34 +0530 | [diff] [blame] | 3504 | .small { |
| 3505 | font-size: 11.5px; |
| 3506 | } |
| 3507 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3508 | .erpnext-footer { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 3509 | margin: 11px auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 3510 | text-align: center; |
| 3511 | } |
| 3512 | |
Anand Doshi | db62876 | 2012-02-24 17:56:00 +0530 | [diff] [blame] | 3513 | .navbar-new-comments { |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 3514 | margin: -3px 0px; |
| 3515 | padding: 2px; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 3516 | min-width: 20px; |
| 3517 | text-align: center; |
| 3518 | display: inline-block; |
| 3519 | border-radius: 2px; |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 3520 | color: #999999; |
| 3521 | background-color: #333131; |
| 3522 | } |
| 3523 | |
| 3524 | .navbar-new-comments:hover, |
| 3525 | .navbar-new-comments:active, |
| 3526 | .navbar-new-comments:focus { |
| 3527 | color: #fff; |
| 3528 | } |
| 3529 | |
| 3530 | |
| 3531 | .navbar-new-comments-true { |
| 3532 | color: #fff; |
| 3533 | background-color: #B00D07; |
| 3534 | } |
| 3535 | |
| 3536 | .navbar-icon-home { |
| 3537 | vertical-align: middle; |
| 3538 | opacity:0.4; |
| 3539 | Filter:alpha(opacity=40); /* For IE8 and earlier */ |
| 3540 | } |
| 3541 | |
| 3542 | .navbar-icon-home:hover, |
| 3543 | .navbar-icon-home:focus, |
Anand Doshi | ac14412 | 2012-02-27 19:16:24 +0530 | [diff] [blame] | 3544 | .navbar-icon-home:active, |
| 3545 | .navbar-icon-home-hover{ |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 3546 | opacity:1; |
| 3547 | Filter:alpha(opacity=100); /* For IE8 and earlier */ |
| 3548 | } |
| 3549 | |
| 3550 | /*extra size menus for recent*/ |
| 3551 | .dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{ |
| 3552 | min-width: 160px !important; |
| 3553 | max-width: 260px !important; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 3554 | } |
Rushabh Mehta | 519f70b | 2012-03-09 16:44:21 +0530 | [diff] [blame] | 3555 | |