| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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; | 48   padding: 0.7em; | 
| 49   border: 1px solid $gray-medium; | 49   border: 1px solid $gray-medium; | 
| 50   border-radius: 4px; | 50   border-radius: 4px; | 
| 51   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); | 51   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); | 
| 52   color: $black; | 52   color: $black; | 
| 53   background: $white; | 53   background: $white; | 
| 54   list-style: none; | 54   list-style: none; | 
|  | 55   z-index: 2; | 
| 55 | 56 | 
| 56   a | 57   a | 
| 57   { | 58   { | 
| 58     color: $black; | 59     color: $black; | 
| 59   } | 60   } | 
| 60 } | 61 } | 
| 61 | 62 | 
| 62 .custom-select-options[aria-hidden="true"] | 63 .custom-select-options[aria-hidden="true"] | 
| 63 { | 64 { | 
| 64   display: none; | 65   display: none; | 
| (...skipping 30 matching lines...) Expand all  Loading... | 
| 95   li:last-child:after | 96   li:last-child:after | 
| 96   { | 97   { | 
| 97     content: none; | 98     content: none; | 
| 98   } | 99   } | 
| 99 | 100 | 
| 100   a | 101   a | 
| 101   { | 102   { | 
| 102     color: inherit; | 103     color: inherit; | 
| 103   } | 104   } | 
| 104 } | 105 } | 
|  | 106 | 
|  | 107 // Custom Dropdown (extends the custom select element) | 
|  | 108 | 
|  | 109 .custom-select-dropdown img | 
|  | 110 { | 
|  | 111   @extend .heading-icon; | 
|  | 112 } | 
|  | 113 | 
|  | 114 .custom-select-dropdown .custom-select-selected, | 
|  | 115 .custom-select-dropdown .custom-select-options | 
|  | 116 { | 
|  | 117   width: 100%; | 
|  | 118 } | 
|  | 119 | 
|  | 120 .custom-select-dropdown .custom-select-selected | 
|  | 121 { | 
|  | 122   height: 40px; | 
|  | 123   color: $primary; | 
|  | 124   padding-right: 2.5em; | 
|  | 125   position: relative; | 
|  | 126   text-align: left; | 
|  | 127 } | 
|  | 128 | 
|  | 129 [dir="rtl"] .custom-select-dropdown .custom-select-selected | 
|  | 130 { | 
|  | 131   text-align: right; | 
|  | 132   padding-left: 2.5em; | 
|  | 133   padding-right: 0.7em; | 
|  | 134 } | 
|  | 135 | 
|  | 136 .custom-select-dropdown .custom-select-selected:after | 
|  | 137 { | 
|  | 138   content: ""; | 
|  | 139   height: 100%; | 
|  | 140   width: 2em; | 
|  | 141   position: absolute; | 
|  | 142   top: 0; | 
|  | 143   right: 0; | 
|  | 144   border-left: 2px solid $gray-medium; | 
|  | 145   background-image: url(/img/png/arrow-down-icon-secondary.png); | 
|  | 146   background-repeat: no-repeat; | 
|  | 147   background-position: center; | 
|  | 148   background-size: 0.7em; | 
|  | 149 } | 
|  | 150 | 
|  | 151 [dir="rtl"] .custom-select-dropdown .custom-select-selected:after | 
|  | 152 { | 
|  | 153   right: auto; | 
|  | 154   left: 0; | 
|  | 155   border-left: 0; | 
|  | 156   border-right: 2px solid $gray-medium; | 
|  | 157 } | 
|  | 158 | 
|  | 159 .custom-select-dropdown .custom-select-options | 
|  | 160 { | 
|  | 161   bottom: auto; | 
|  | 162   top: 100%; | 
|  | 163 } | 
|  | 164 | 
|  | 165 .custom-select-dropdown .custom-select-options li | 
|  | 166 { | 
|  | 167   line-height: 40px; | 
|  | 168 } | 
| OLD | NEW | 
|---|