admin_styles.css
143 lines
| 1 | .cookiebot-addon.postbox { |
| 2 | padding: 12px 0 12px 15px; |
| 3 | } |
| 4 | |
| 5 | .cookiebot-addon.postbox h2 { |
| 6 | padding-top: 0; |
| 7 | padding-bottom: 10px; |
| 8 | margin: 0; |
| 9 | font-size: 16px; |
| 10 | } |
| 11 | |
| 12 | form.not_installed_plugins p.submit { |
| 13 | display: none; |
| 14 | } |
| 15 | |
| 16 | ul.cookietypes li { |
| 17 | display: inline; |
| 18 | } |
| 19 | |
| 20 | .placeholder { |
| 21 | margin: 0 15px 15px 0; |
| 22 | background: #EEE; |
| 23 | padding: 15px; |
| 24 | } |
| 25 | |
| 26 | .placeholder_enable, |
| 27 | .placeholder_select_div { |
| 28 | width: 100%; |
| 29 | display: block; |
| 30 | } |
| 31 | |
| 32 | div.extra_information { |
| 33 | font-weight: 400; |
| 34 | } |
| 35 | |
| 36 | .placeholder_content .textarea { |
| 37 | display: flex; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Help Tip |
| 42 | */ |
| 43 | .help-tip { |
| 44 | color: #ffffff; |
| 45 | display: inline-block; |
| 46 | font-size: 12px; |
| 47 | font-weight: 500; |
| 48 | font-style: normal; |
| 49 | line-height: 10px; |
| 50 | position: relative; |
| 51 | cursor: pointer; |
| 52 | background: #333333; |
| 53 | padding: 5px 6px; |
| 54 | border-radius: 5px; |
| 55 | } |
| 56 | |
| 57 | #tiptip_holder{ |
| 58 | position: absolute; |
| 59 | top: 0; |
| 60 | } |
| 61 | |
| 62 | #tiptip_holder.tip_top { |
| 63 | padding-bottom: 5px |
| 64 | } |
| 65 | |
| 66 | #tiptip_holder.tip_top #tiptip_arrow_inner { |
| 67 | margin-top: -7px; |
| 68 | margin-left: -6px; |
| 69 | border-top-color: #333 |
| 70 | } |
| 71 | |
| 72 | #tiptip_holder.tip_bottom { |
| 73 | padding-top: 5px |
| 74 | } |
| 75 | |
| 76 | #tiptip_holder.tip_bottom #tiptip_arrow_inner { |
| 77 | margin-top: -5px; |
| 78 | margin-left: -6px; |
| 79 | border-bottom-color: #333 |
| 80 | } |
| 81 | |
| 82 | #tiptip_holder.tip_right { |
| 83 | padding-left: 5px |
| 84 | } |
| 85 | |
| 86 | #tiptip_holder.tip_right #tiptip_arrow_inner { |
| 87 | margin-top: -6px; |
| 88 | margin-left: -5px; |
| 89 | border-right-color: #333 |
| 90 | } |
| 91 | |
| 92 | #tiptip_holder.tip_left { |
| 93 | padding-right: 5px |
| 94 | } |
| 95 | |
| 96 | #tiptip_holder.tip_left #tiptip_arrow_inner { |
| 97 | margin-top: -6px; |
| 98 | margin-left: -7px; |
| 99 | border-left-color: #333 |
| 100 | } |
| 101 | |
| 102 | #tiptip_content, .chart-tooltip, .wc_error_tip { |
| 103 | color: #fff; |
| 104 | font-size: .8em; |
| 105 | max-width: 300px; |
| 106 | background: #333; |
| 107 | text-align: center; |
| 108 | border-radius: 3px; |
| 109 | padding: .618em 1em; |
| 110 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .2); |
| 111 | box-shadow: 0 1px 3px rgba(0, 0, 0, .2) |
| 112 | } |
| 113 | |
| 114 | #tiptip_content code, .chart-tooltip code, .wc_error_tip code { |
| 115 | padding: 1px; |
| 116 | background: #888 |
| 117 | } |
| 118 | |
| 119 | #tiptip_arrow, #tiptip_arrow_inner { |
| 120 | position: absolute; |
| 121 | border-color: transparent; |
| 122 | border-style: solid; |
| 123 | border-width: 6px; |
| 124 | height: 0; |
| 125 | width: 0 |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | Show advanced options |
| 130 | */ |
| 131 | .show_advanced_options { |
| 132 | margin: 15px 0 10px 0; |
| 133 | } |
| 134 | .advanced_options{ |
| 135 | display: none; |
| 136 | } |
| 137 | .advanced_options label{ |
| 138 | vertical-align: top; |
| 139 | } |
| 140 | #embed_regex { |
| 141 | width: 400px; |
| 142 | } |
| 143 |