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