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 } | 7 } |
8 | 8 |
9 .dialog-contents { | 9 .dialog-contents { |
10 width: 100%; | 10 width: 100%; |
(...skipping 24 matching lines...) Expand all Loading... |
35 min-height: 2em; | 35 min-height: 2em; |
36 padding-left: 10px; | 36 padding-left: 10px; |
37 padding-right: 10px; | 37 padding-right: 10px; |
38 } | 38 } |
39 | 39 |
40 .dialog button:active { | 40 .dialog button:active { |
41 background-color: rgb(215, 215, 215); | 41 background-color: rgb(215, 215, 215); |
42 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); | 42 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
43 } | 43 } |
44 | 44 |
| 45 .dialog input[type="search"]:focus, |
| 46 .dialog input[type="text"]:focus { |
| 47 outline: none; |
| 48 } |
| 49 |
OLD | NEW |