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
multiple_page.css
142 lines
| 1 | .cb-region__table { |
| 2 | display: grid; |
| 3 | grid-row-gap: 7px; |
| 4 | } |
| 5 | |
| 6 | .cb-region__table__header { |
| 7 | display: grid; |
| 8 | grid-template-columns: 1fr 1fr; |
| 9 | grid-column-gap: 15px; |
| 10 | padding: 0 24px; |
| 11 | } |
| 12 | |
| 13 | .cb-region__table__header--title { |
| 14 | font-size: 13px; |
| 15 | line-height: 18px; |
| 16 | color: #666666; |
| 17 | font-weight: 700; |
| 18 | } |
| 19 | |
| 20 | .cb-region__table__item { |
| 21 | display: grid; |
| 22 | grid-template-columns: 1fr 1fr; |
| 23 | grid-column-gap: 15px; |
| 24 | background-color: #f2f2f2; |
| 25 | border-radius: 4px; |
| 26 | padding: 8px 24px; |
| 27 | } |
| 28 | |
| 29 | .cb-region__item__region--primary { |
| 30 | font-size: 15px; |
| 31 | line-height: 24px; |
| 32 | font-weight: 400; |
| 33 | color: #141414; |
| 34 | } |
| 35 | |
| 36 | .cb-region__item__region { |
| 37 | position: relative; |
| 38 | } |
| 39 | |
| 40 | .cb-region__region__selector { |
| 41 | position: relative; |
| 42 | width: 100%; |
| 43 | background-color: #ffffff; |
| 44 | color: #141414; |
| 45 | border: 2px solid #d3d3d3; |
| 46 | border-radius: 7px; |
| 47 | padding: 8px 15px; |
| 48 | box-sizing: border-box; |
| 49 | font-size: 15px; |
| 50 | font-weight: 600; |
| 51 | line-height: 27px; |
| 52 | min-height: 30px; |
| 53 | cursor: pointer; |
| 54 | } |
| 55 | |
| 56 | .cb-region__region__selector:after { |
| 57 | content: url(/wp-content/plugins/cookiebot/assets/img/icons/down.svg); |
| 58 | position: absolute; |
| 59 | top: 7px; |
| 60 | right: 12px; |
| 61 | } |
| 62 | |
| 63 | .selected-regions-item { |
| 64 | display: inline-block; |
| 65 | padding: 1px 5px; |
| 66 | font-size: 13px; |
| 67 | line-height: initial; |
| 68 | background: blue; |
| 69 | color: #ffffff; |
| 70 | border-radius: 15px; |
| 71 | margin-right: 4px; |
| 72 | } |
| 73 | |
| 74 | .cb-region__region__list { |
| 75 | position: absolute; |
| 76 | bottom: 0; |
| 77 | width: 100%; |
| 78 | max-height: 220px; |
| 79 | overflow: hidden; |
| 80 | background-color: #ffffff; |
| 81 | box-shadow: 0px 8px 24px rgb(0 0 0 / 25%); |
| 82 | border-radius: 8px; |
| 83 | box-sizing: border-box; |
| 84 | } |
| 85 | |
| 86 | .cb-region__list__container { |
| 87 | position: relative; |
| 88 | width: calc(100% - 4px); |
| 89 | max-height: 216px; |
| 90 | margin: 2px; |
| 91 | box-sizing: border-box; |
| 92 | overflow-y: scroll; |
| 93 | z-index: 1; |
| 94 | } |
| 95 | |
| 96 | .cb-region__region__item { |
| 97 | position: relative; |
| 98 | font-size: 15px; |
| 99 | font-weight: 600; |
| 100 | line-height: 24px; |
| 101 | padding: 10px 15px; |
| 102 | margin-bottom: 3px; |
| 103 | border-radius: 8px; |
| 104 | cursor: pointer; |
| 105 | } |
| 106 | |
| 107 | .cb-region__region__item:hover { |
| 108 | background-color: #f2f2f2; |
| 109 | color: #1032CF; |
| 110 | } |
| 111 | |
| 112 | .cb-region__region__item.selected-region { |
| 113 | background-color: #ECEFFE; |
| 114 | color: #1032CF; |
| 115 | } |
| 116 | |
| 117 | .cb-region__region__item.selected-region:after { |
| 118 | content: ''; |
| 119 | position: absolute; |
| 120 | top: 10px; |
| 121 | right: 15px; |
| 122 | width: 20px; |
| 123 | height: 20px; |
| 124 | background-color: #1032cf; |
| 125 | -webkit-mask-size: contain; |
| 126 | mask-size: contain; |
| 127 | -webkit-mask-repeat: no-repeat; |
| 128 | mask-repeat: no-repeat; |
| 129 | -webkit-mask-position: center; |
| 130 | mask-position: center; |
| 131 | -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/check.svg); |
| 132 | mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/check.svg); |
| 133 | } |
| 134 | |
| 135 | .cb-region__veil { |
| 136 | position: fixed; |
| 137 | top: 0; |
| 138 | bottom: 0; |
| 139 | right: 0; |
| 140 | left: 0; |
| 141 | z-index: 0; |
| 142 | } |