OLD | NEW |
1 .dialog { | 1 .dialog { |
2 position: absolute; | 2 position: absolute; |
3 | |
4 padding: 10px; | 3 padding: 10px; |
5 border: 1px solid rgb(204, 204, 204); | 4 border: 1px solid rgb(204, 204, 204); |
6 box-shadow: rgb(140, 140, 140) 0 2px 3px; | 5 box-shadow: rgb(140, 140, 140) 0 2px 3px; |
7 display: flex; | 6 display: flex; |
8 -webkit-flex-direction: column; | 7 -webkit-flex-direction: column; |
9 } | 8 } |
10 | 9 |
11 .dialog-contents { | 10 .dialog-contents { |
12 width: 100%; | 11 width: 100%; |
13 } | 12 } |
(...skipping 18 matching lines...) Expand all Loading... |
32 | 31 |
33 padding: 3px 20px; | 32 padding: 3px 20px; |
34 margin: 0 0 0 10px; | 33 margin: 0 0 0 10px; |
35 } | 34 } |
36 | 35 |
37 .go-to-line-dialog button:active { | 36 .go-to-line-dialog button:active { |
38 background-color: rgb(215, 215, 215); | 37 background-color: rgb(215, 215, 215); |
39 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); | 38 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
40 } | 39 } |
41 | 40 |
OLD | NEW |