OLD | NEW |
(Empty) | |
| 1 .bug-report-label { |
| 2 text-align: start; |
| 3 vertical-align: text-top; |
| 4 } |
| 5 |
| 6 .bug-report-text { |
| 7 width: 40em; |
| 8 resize: none; |
| 9 } |
| 10 |
| 11 .bug-report-button { |
| 12 width: 8em; |
| 13 } |
| 14 |
| 15 hr { |
| 16 border: none; |
| 17 height: 1px; |
| 18 background: #cccccc; |
| 19 margin-top: 10px; |
| 20 margin-bottom: 10px; |
| 21 width: 33.5em; |
| 22 } |
| 23 |
| 24 .thumbnail-list { |
| 25 -webkit-margin-start: 1em; |
| 26 width: 33.5em; |
| 27 display: block; |
| 28 margin-top: 0.5em; |
| 29 margin-bottom: 1em; |
| 30 } |
| 31 |
| 32 .image-thumbnail-container { |
| 33 display: inline-block; |
| 34 border: 2px solid white; |
| 35 -webkit-border-radius: 3px; |
| 36 z-index: 0; |
| 37 } |
| 38 |
| 39 .image-thumbnail-container-selected { |
| 40 display: inline-block; |
| 41 border: 2px solid green; |
| 42 -webkit-border-radius: 3px; |
| 43 z-index: 0; |
| 44 } |
| 45 |
| 46 .image-thumbnail-container:hover { |
| 47 border: 2px solid #B8DAB0; |
| 48 z-index: 0; |
| 49 } |
| 50 |
| 51 .image-popup { |
| 52 width: 50%; |
| 53 } |
| 54 |
| 55 .image-thumbnail { |
| 56 position: relative; |
| 57 z-index: 1; |
| 58 display: inline-block; |
| 59 padding: 0px; |
| 60 border: 2px solid white; |
| 61 } |
| 62 |
| 63 .image-thumbnail:hover { |
| 64 z-index: 2; |
| 65 } |
| 66 |
| 67 .image-thumbnail div { |
| 68 display: none; |
| 69 } |
| 70 |
| 71 .image-thumbnail img { |
| 72 display: block; |
| 73 width: 75px; |
| 74 } |
| 75 |
| 76 .image-thumbnail:hover div { |
| 77 display: block; |
| 78 position: absolute; |
| 79 top: 130%; |
| 80 left:0; |
| 81 padding: 1px; |
| 82 border: 1px dashed blue; |
| 83 background-color: transparent; |
| 84 text-align: center |
| 85 } |
| 86 |
| 87 .image-thumbnail:hover div img { |
| 88 position: absolute; |
| 89 width: 400px; |
| 90 } |
| 91 |
| 92 th { |
| 93 padding-top: 10px; |
| 94 color: #233478; |
| 95 } |
| 96 |
| 97 body { |
| 98 -webkit-user-select: none; |
| 99 } |
OLD | NEW |