| OLD | NEW |
| 1 .visible-transition { | 1 .visible-transition { |
| 2 transition-delay: 0s; | 2 transition-delay: 0s; |
| 3 transition-duration: 1s; | 3 transition-duration: 1s; |
| 4 transition-property: all; | 4 transition-property: all; |
| 5 transition-timing-function: ease; | 5 transition-timing-function: ease; |
| 6 } | 6 } |
| 7 | 7 |
| 8 .collapse-pane { | 8 .collapse-pane { |
| 9 background: #A0A0A0; | 9 background: #A0A0A0; |
| 10 bottom: 0; | 10 bottom: 0; |
| 11 position: absolute; | 11 position: absolute; |
| 12 margin-bottom: 0.5em; | 12 margin-bottom: 0.5em; |
| 13 margin-right: 0.5em; | 13 margin-right: 0.5em; |
| 14 margin-left: 0.5em; | 14 margin-left: 0.5em; |
| 15 border-radius: 5px; | 15 border-radius: 5px; |
| 16 padding: 0.5em; | 16 padding: 0.5em; |
| 17 z-index: 5; | 17 z-index: 5; |
| 18 opacity: 0.7; | 18 opacity: 0.7; |
| 19 cursor: pointer; |
| 19 } | 20 } |
| 20 | 21 |
| 21 .search-input { | 22 .search-input { |
| 22 vertical-align: middle; | 23 vertical-align: middle; |
| 23 width: 145px; | 24 width: 145px; |
| 24 opacity: 1; | 25 opacity: 1; |
| 25 } | 26 } |
| 26 | 27 |
| 27 .button-input { | 28 .button-input { |
| 28 vertical-align: middle; | 29 vertical-align: middle; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 li.nolinenums { | 221 li.nolinenums { |
| 221 list-style-type:none; | 222 list-style-type:none; |
| 222 } | 223 } |
| 223 | 224 |
| 224 ul.noindent { | 225 ul.noindent { |
| 225 -webkit-padding-start: 0px; | 226 -webkit-padding-start: 0px; |
| 226 -webkit-margin-before: 0px; | 227 -webkit-margin-before: 0px; |
| 227 -webkit-margin-after: 0px; | 228 -webkit-margin-after: 0px; |
| 228 } | 229 } |
| 229 | 230 |
| 230 input:hover { | 231 input:hover, .collapse-pane:hover input { |
| 231 opacity: 1; | 232 opacity: 1; |
| 232 cursor: pointer; | 233 cursor: pointer; |
| 233 } | 234 } |
| 234 | 235 |
| 235 span.linkable-text { | 236 span.linkable-text { |
| 236 text-decoration: underline; | 237 text-decoration: underline; |
| 237 } | 238 } |
| 238 | 239 |
| 239 span.linkable-text:hover { | 240 span.linkable-text:hover { |
| 240 cursor: pointer; | 241 cursor: pointer; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 border-radius: 5px; | 318 border-radius: 5px; |
| 318 padding: 0.5em; | 319 padding: 0.5em; |
| 319 z-index: 5; | 320 z-index: 5; |
| 320 opacity: 0.7; | 321 opacity: 0.7; |
| 321 } | 322 } |
| 322 | 323 |
| 323 #hidden-file-upload{ | 324 #hidden-file-upload{ |
| 324 display: none; | 325 display: none; |
| 325 } | 326 } |
| 326 | 327 |
| OLD | NEW |