OLD | NEW |
1 .dialog { | 1 .dialog { |
2 position: absolute; | 2 position: absolute; |
3 | 3 |
4 padding: 10px; | 4 padding: 10px; |
5 border-radius: 10px; | 5 border-radius: 10px; |
6 border: 1px solid gray; | 6 border: 1px solid gray; |
7 | 7 |
8 box-shadow: rgb(40,40,40) 0 0 50px; | 8 box-shadow: rgb(40,40,40) 0 0 50px; |
9 | 9 |
10 display: -webkit-flex; | 10 display: -webkit-flex; |
11 -webkit-flex-direction: column; | 11 -webkit-flex-direction: column; |
12 | 12 |
13 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E9E9E9), to
(#CFCFCF)); | 13 background-image: linear-gradient(to bottom, #E9E9E9, #CFCFCF); |
14 } | 14 } |
15 | 15 |
16 .dialog-contents { | 16 .dialog-contents { |
17 width: 100%; | 17 width: 100%; |
18 } | 18 } |
19 | 19 |
20 .go-to-line-dialog { | 20 .go-to-line-dialog { |
21 font-size: 11px; | 21 font-size: 11px; |
22 font-family: 'Lucida Grande', sans-serif; | 22 font-family: 'Lucida Grande', sans-serif; |
23 } | 23 } |
24 | 24 |
25 .go-to-line-dialog input { | 25 .go-to-line-dialog input { |
26 font-size: 11px; | 26 font-size: 11px; |
27 } | 27 } |
28 | 28 |
29 .go-to-line-dialog button { | 29 .go-to-line-dialog button { |
30 font-size: 11px; | 30 font-size: 11px; |
31 color: rgb(6, 6, 6); | 31 color: rgb(6, 6, 6); |
32 border: 1px solid rgb(165, 165, 165); | 32 border: 1px solid rgb(165, 165, 165); |
33 background-color: rgb(237, 237, 237); | 33 background-color: rgb(237, 237, 237); |
34 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
52, 252, 252)), to(rgb(223, 223, 223))); | 34 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
35 border-radius: 12px; | 35 border-radius: 12px; |
36 -webkit-appearance: none; | 36 -webkit-appearance: none; |
37 | 37 |
38 padding: 3px 20px; | 38 padding: 3px 20px; |
39 margin: 0 0 0 10px; | 39 margin: 0 0 0 10px; |
40 } | 40 } |
41 | 41 |
42 .go-to-line-dialog button:active { | 42 .go-to-line-dialog button:active { |
43 background-color: rgb(215, 215, 215); | 43 background-color: rgb(215, 215, 215); |
44 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); | 44 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
45 } | 45 } |
46 | 46 |
OLD | NEW |