global
3 years ago
addons_page.css
3 years ago
consent_mapping_table.css
4 years ago
cookiebot_admin_main.css
3 years ago
dashboard_page.css
3 years ago
debug_info.css
3 years ago
gtm_page.css
4 years ago
multiple_page.css
3 years ago
settings-page.css
3 years ago
support_page.css
3 years ago
addons_page.css
333 lines
| 1 | .cb-settings__header { |
| 2 | display: grid; |
| 3 | grid-template-columns: 3fr 1fr; |
| 4 | align-items: start; |
| 5 | } |
| 6 | |
| 7 | .cb-settings__header .cb-main__page_title { |
| 8 | margin: 0; |
| 9 | } |
| 10 | |
| 11 | .cb-settings__header p.submit { |
| 12 | text-align: right; |
| 13 | margin: 0; |
| 14 | padding: 0; |
| 15 | } |
| 16 | |
| 17 | .cb-settings__header p.submit #submit { |
| 18 | background-color: rgba(0, 0, 0, 0.16); |
| 19 | color: #666666; |
| 20 | padding: 10px 20px; |
| 21 | font-size: 16px; |
| 22 | border: none; |
| 23 | pointer-events: none; |
| 24 | } |
| 25 | |
| 26 | .cb-settings__header p.submit #submit.enabled{ |
| 27 | background-color: #076646; |
| 28 | color: #ffffff; |
| 29 | pointer-events: initial; |
| 30 | } |
| 31 | |
| 32 | .cb-settings__tabs { |
| 33 | display: grid; |
| 34 | grid-template-columns: repeat(4, minmax(180px, max-content)); |
| 35 | margin: 25px 0 50px; |
| 36 | border-bottom: 1px solid #e1e1e1; |
| 37 | } |
| 38 | |
| 39 | .cb-settings__tabs__item { |
| 40 | display: grid; |
| 41 | float: none; |
| 42 | background: transparent; |
| 43 | margin: 0; |
| 44 | padding: 15px 10px; |
| 45 | align-items: center; |
| 46 | border: none; |
| 47 | border-bottom: 3px solid transparent; |
| 48 | color: #141414; |
| 49 | font-size: 16px; |
| 50 | font-weight: 600; |
| 51 | text-align: center; |
| 52 | line-height: initial; |
| 53 | cursor: pointer; |
| 54 | } |
| 55 | |
| 56 | .cb-settings__tabs__item.nav-tab-active:hover { |
| 57 | background: transparent; |
| 58 | color: #141414; |
| 59 | border-bottom-width: 3px; |
| 60 | } |
| 61 | |
| 62 | .cb-settings__tabs__item.nav-tab-active, .cb-settings__tabs__item:hover { |
| 63 | color: #141414; |
| 64 | border-color: #1032cf; |
| 65 | } |
| 66 | |
| 67 | .cb-settings__tabs__content--item .submit { |
| 68 | padding: 0; |
| 69 | margin: 0; |
| 70 | text-align: right; |
| 71 | } |
| 72 | |
| 73 | .cb-settings__tabs__content--item #submit { |
| 74 | background-color: rgba(0, 0, 0, 0.16); |
| 75 | color: #666666; |
| 76 | padding: 10px 20px; |
| 77 | font-size: 16px; |
| 78 | border: none; |
| 79 | pointer-events: none; |
| 80 | } |
| 81 | |
| 82 | .cb-settings__tabs__content--item #submit.enabled{ |
| 83 | background-color: #076646; |
| 84 | color: #ffffff; |
| 85 | pointer-events: initial; |
| 86 | } |
| 87 | |
| 88 | .cb-addons__tab__header { |
| 89 | display: grid; |
| 90 | grid-row-gap: 20px; |
| 91 | margin-bottom: 50px; |
| 92 | } |
| 93 | |
| 94 | .cb-addons__tab__title { |
| 95 | font-size: 22px; |
| 96 | font-weight: 700; |
| 97 | margin: 0 0 20px; |
| 98 | } |
| 99 | |
| 100 | .cb-addons__tab__text { |
| 101 | font-size: 16px; |
| 102 | line-height: 24px; |
| 103 | } |
| 104 | |
| 105 | .cb-addons__header__column--inner { |
| 106 | background-color: #efefef; |
| 107 | border-radius: 15px; |
| 108 | padding: 25px; |
| 109 | } |
| 110 | |
| 111 | .cb-addons__header__column.submit-column { |
| 112 | display: grid; |
| 113 | grid-template-columns: 1fr 1fr; |
| 114 | } |
| 115 | |
| 116 | .cb-addons__tab__subtitle { |
| 117 | font-size: 15px; |
| 118 | margin: 0; |
| 119 | } |
| 120 | |
| 121 | .form-table th { |
| 122 | width: 50%; |
| 123 | } |
| 124 | |
| 125 | .plugin-title { |
| 126 | font-size: 20px; |
| 127 | font-weight: 600; |
| 128 | line-height: 29px; |
| 129 | } |
| 130 | |
| 131 | .extra_information p { |
| 132 | font-size: 15px; |
| 133 | font-weight: 400; |
| 134 | line-height: 24px; |
| 135 | color: #141414; |
| 136 | } |
| 137 | |
| 138 | .postbox.cookiebot-addon { |
| 139 | border: none; |
| 140 | background-color: #F2F2F2; |
| 141 | padding: 25px; |
| 142 | border-radius: 15px; |
| 143 | } |
| 144 | |
| 145 | .postbox.cookiebot-addon > p { |
| 146 | font-size: 16px; |
| 147 | line-height: 24px; |
| 148 | } |
| 149 | |
| 150 | .cookiebot-addon-enable { |
| 151 | padding-bottom: 20px; |
| 152 | border-bottom: 1px solid #d3d3d3; |
| 153 | margin-bottom: 20px; |
| 154 | } |
| 155 | |
| 156 | .cookiebot-addon-enable label.switch-checkbox { |
| 157 | font-size: 16px; |
| 158 | line-height: 20px; |
| 159 | font-weight: 500; |
| 160 | color: #141414; |
| 161 | } |
| 162 | |
| 163 | .cookiebot-addon .cookiebot-addon-text { |
| 164 | font-size: 16px; |
| 165 | line-height: 20px; |
| 166 | font-weight: 500; |
| 167 | color: #141414; |
| 168 | } |
| 169 | |
| 170 | .cookiebot-addon input + label.cookiebot-addon-text { |
| 171 | text-transform: capitalize; |
| 172 | } |
| 173 | |
| 174 | .cookiebot-addon .cookietypes { |
| 175 | margin-bottom: 30px; |
| 176 | } |
| 177 | |
| 178 | .cookiebot-addon .cookietypes li { |
| 179 | margin: 20px 0px; |
| 180 | } |
| 181 | |
| 182 | .cookiebot-addon .cookiebot-addon-placeholder { |
| 183 | margin: 20px 0 25px; |
| 184 | } |
| 185 | |
| 186 | .cookiebot-addon .placeholder { |
| 187 | padding: 16px 24px; |
| 188 | background: rgba(255, 255, 255, 0.5); |
| 189 | border-radius: 8px; |
| 190 | } |
| 191 | |
| 192 | .placeholder_title { |
| 193 | display: block; |
| 194 | font-size: 16px; |
| 195 | line-height: 20px; |
| 196 | font-weight: 500; |
| 197 | color: #141414; |
| 198 | margin-bottom: 16px; |
| 199 | } |
| 200 | |
| 201 | select.placeholder_select_language { |
| 202 | width: 100%; |
| 203 | border: 2px solid #d3d3d3; |
| 204 | border-radius: 7px; |
| 205 | padding: 8px 15px; |
| 206 | max-width: initial; |
| 207 | margin-bottom: 25px; |
| 208 | } |
| 209 | |
| 210 | .placeholder_textarea { |
| 211 | width: 100%; |
| 212 | border: 2px solid #d3d3d3; |
| 213 | border-radius: 7px; |
| 214 | padding: 8px 15px; |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Help Tip |
| 219 | */ |
| 220 | .help-tip { |
| 221 | color: #ffffff; |
| 222 | display: inline-block; |
| 223 | font-size: 12px; |
| 224 | font-weight: 500; |
| 225 | font-style: normal; |
| 226 | line-height: 10px; |
| 227 | position: relative; |
| 228 | cursor: pointer; |
| 229 | background: #333333; |
| 230 | padding: 5px 6px; |
| 231 | border-radius: 5px; |
| 232 | } |
| 233 | |
| 234 | #tiptip_holder{ |
| 235 | position: absolute; |
| 236 | top: 0; |
| 237 | } |
| 238 | |
| 239 | #tiptip_holder.tip_top { |
| 240 | padding-bottom: 5px |
| 241 | } |
| 242 | |
| 243 | #tiptip_holder.tip_top #tiptip_arrow_inner { |
| 244 | margin-top: -7px; |
| 245 | margin-left: -6px; |
| 246 | border-top-color: #333 |
| 247 | } |
| 248 | |
| 249 | #tiptip_holder.tip_bottom { |
| 250 | padding-top: 5px |
| 251 | } |
| 252 | |
| 253 | #tiptip_holder.tip_bottom #tiptip_arrow_inner { |
| 254 | margin-top: -5px; |
| 255 | margin-left: -6px; |
| 256 | border-bottom-color: #333 |
| 257 | } |
| 258 | |
| 259 | #tiptip_holder.tip_right { |
| 260 | padding-left: 5px |
| 261 | } |
| 262 | |
| 263 | #tiptip_holder.tip_right #tiptip_arrow_inner { |
| 264 | margin-top: -6px; |
| 265 | margin-left: -5px; |
| 266 | border-right-color: #333 |
| 267 | } |
| 268 | |
| 269 | #tiptip_holder.tip_left { |
| 270 | padding-right: 5px |
| 271 | } |
| 272 | |
| 273 | #tiptip_holder.tip_left #tiptip_arrow_inner { |
| 274 | margin-top: -6px; |
| 275 | margin-left: -7px; |
| 276 | border-left-color: #333 |
| 277 | } |
| 278 | |
| 279 | #tiptip_content, .chart-tooltip, .wc_error_tip { |
| 280 | color: #fff; |
| 281 | font-size: .8em; |
| 282 | max-width: 300px; |
| 283 | background: #333; |
| 284 | text-align: center; |
| 285 | border-radius: 3px; |
| 286 | padding: .618em 1em; |
| 287 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .2); |
| 288 | box-shadow: 0 1px 3px rgba(0, 0, 0, .2) |
| 289 | } |
| 290 | |
| 291 | #tiptip_content code, .chart-tooltip code, .wc_error_tip code { |
| 292 | padding: 1px; |
| 293 | background: #888 |
| 294 | } |
| 295 | |
| 296 | #tiptip_arrow, #tiptip_arrow_inner { |
| 297 | position: absolute; |
| 298 | border-color: transparent; |
| 299 | border-style: solid; |
| 300 | border-width: 6px; |
| 301 | height: 0; |
| 302 | width: 0 |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | Show advanced options |
| 307 | */ |
| 308 | .show_advanced_options { |
| 309 | margin: 15px 0 10px 0; |
| 310 | } |
| 311 | .advanced_options { |
| 312 | display: none; |
| 313 | padding: 16px 24px; |
| 314 | background: rgba(255, 255, 255, 0.5); |
| 315 | border-radius: 8px; |
| 316 | margin-top: 25px; |
| 317 | } |
| 318 | .advanced_options label { |
| 319 | vertical-align: top; |
| 320 | display: block; |
| 321 | font-size: 16px; |
| 322 | line-height: 20px; |
| 323 | font-weight: 500; |
| 324 | color: #141414; |
| 325 | margin-bottom: 16px; |
| 326 | } |
| 327 | #embed_regex { |
| 328 | width: 100%; |
| 329 | border: 2px solid #d3d3d3; |
| 330 | border-radius: 7px; |
| 331 | padding: 8px 15px; |
| 332 | margin-bottom: 15px; |
| 333 | } |