Left: | ||
Right: |
OLD | NEW |
---|---|
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 Eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 27 matching lines...) Expand all Loading... | |
38 { | 38 { |
39 display: inline-block; | 39 display: inline-block; |
40 } | 40 } |
41 | 41 |
42 .custom-select-options | 42 .custom-select-options |
43 { | 43 { |
44 position: absolute; | 44 position: absolute; |
45 bottom: 100%; | 45 bottom: 100%; |
46 left: 0px; | 46 left: 0px; |
47 margin-bottom: 0.5em; | 47 margin-bottom: 0.5em; |
48 padding: 0.7em; | |
49 border: 1px solid $gray-medium; | 48 border: 1px solid $gray-medium; |
50 border-radius: 4px; | 49 border-radius: 4px; |
51 box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); | 50 box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); |
52 color: $black; | 51 color: $black; |
53 background: $white; | 52 background: $white; |
54 list-style: none; | 53 list-style: none; |
54 z-index: 2; | |
55 | 55 |
56 a | 56 a |
57 { | 57 { |
58 color: $black; | 58 color: $black; |
59 } | 59 } |
60 } | 60 } |
61 | 61 |
62 .custom-select-options[aria-hidden="true"] | 62 .custom-select-options[aria-hidden="true"] |
63 { | 63 { |
64 display: none; | 64 display: none; |
(...skipping 30 matching lines...) Expand all Loading... | |
95 li:last-child:after | 95 li:last-child:after |
96 { | 96 { |
97 content: none; | 97 content: none; |
98 } | 98 } |
99 | 99 |
100 a | 100 a |
101 { | 101 { |
102 color: inherit; | 102 color: inherit; |
103 } | 103 } |
104 } | 104 } |
105 | |
106 .custom-select-option | |
juliandoucette
2017/11/02 15:22:19
suggest: change background-color on hove/active/fo
ire
2017/11/03 08:45:36
I'll probably handle this in the other issue handl
| |
107 { | |
108 padding: 0.7em; | |
109 } | |
110 | |
111 // Custom Dropdown (extends the custom select element) | |
juliandoucette
2017/11/02 15:22:18
suggest: category comment (underline it)
ire
2017/11/03 08:45:36
Will change all comments in a separate issue
| |
112 | |
113 .custom-select-dropdown .custom-select-selected, | |
114 .custom-select-dropdown .custom-select-options | |
115 { | |
116 width: 100%; | |
117 } | |
118 | |
119 .custom-select-dropdown .custom-select-selected | |
120 { | |
121 position: relative; | |
122 height: 2.5em; | |
123 padding-right: 3.5em; | |
124 padding-left: 0.7em; | |
125 color: $primary; | |
126 text-align: left; | |
127 } | |
128 | |
129 [dir="rtl"] .custom-select-dropdown .custom-select-selected | |
130 { | |
131 padding-right: 0.7em; | |
132 padding-left: 3.5em; | |
133 text-align: right; | |
134 } | |
135 | |
136 .custom-select-dropdown .custom-select-selected:after | |
137 { | |
138 position: absolute; | |
139 top: 0; | |
140 right: 0; | |
141 width: 3em; | |
142 height: 100%; | |
143 border-left: 2px solid $gray-medium; | |
juliandoucette
2017/11/02 15:22:18
suggest: 1px lighter gray throughout
| |
144 background-image: url(/img/png/arrow-icon-down-secondary.png); | |
145 background-image: linear-gradient(transparent, transparent), | |
146 url(/img/svg/arrow-icon-down-secondary.svg); | |
147 background-repeat: no-repeat; | |
148 background-position: center; | |
149 background-size: 0.7em; | |
150 content: ""; | |
151 } | |
152 | |
153 [dir="rtl"] .custom-select-dropdown .custom-select-selected:after | |
154 { | |
155 right: auto; | |
156 left: 0; | |
157 border-right: 2px solid $gray-medium; | |
158 border-left: 0; | |
159 } | |
160 | |
161 .custom-select-dropdown .custom-select-options | |
162 { | |
163 top: 100%; | |
164 bottom: auto; | |
165 } | |
OLD | NEW |