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