OLD | NEW |
1 .dialog { | 1 .dialog { |
2 position: absolute; | 2 position: absolute; |
3 border: 1px solid rgb(204, 204, 204); | 3 border: 1px solid rgb(204, 204, 204); |
4 box-shadow: rgb(140, 140, 140) 0 3px 14px; | 4 box-shadow: rgb(140, 140, 140) 0 3px 14px; |
5 display: flex; | 5 display: flex; |
6 -webkit-flex-direction: column; | 6 -webkit-flex-direction: column; |
7 background: white; | 7 background: white; |
8 } | 8 } |
9 | 9 |
10 .dialog-contents { | 10 .dialog-contents { |
(...skipping 30 matching lines...) Expand all Loading... |
41 .dialog button:active { | 41 .dialog button:active { |
42 background-color: rgb(215, 215, 215); | 42 background-color: rgb(215, 215, 215); |
43 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); | 43 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
44 } | 44 } |
45 | 45 |
46 .dialog input[type="search"]:focus, | 46 .dialog input[type="search"]:focus, |
47 .dialog input[type="text"]:focus { | 47 .dialog input[type="text"]:focus { |
48 outline: none; | 48 outline: none; |
49 } | 49 } |
50 | 50 |
| 51 #glass-pane.tinted { |
| 52 background-color: rgba(0, 0, 0, 0.2) !important; |
| 53 } |
OLD | NEW |