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