vendor
9 years ago
admin.css
9 years ago
embedpress.css
9 years ago
font.css
9 years ago
index.html
9 years ago
preview.css
9 years ago
admin.css
234 lines
| 1 | /** |
| 2 | * @package EmbedPress |
| 3 | * @author PressShack <help@pressshack.com> |
| 4 | * @copyright Copyright (C) 2017 Open Source Training, LLC. All rights reserved. |
| 5 | * @license GPLv2 or later |
| 6 | * @since 1.3.1 |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * WordPress's admin sidebar. |
| 11 | */ |
| 12 | #toplevel_page_embedpress > a.current { |
| 13 | background-color: #655997 !important; |
| 14 | } |
| 15 | |
| 16 | #toplevel_page_embedpress .dashicons-admin-generic::before, |
| 17 | #toplevel_page_embedpress .current .dashicons-admin-generic::before { |
| 18 | background-image: url(../images/menu-icon.png); |
| 19 | background-repeat: no-repeat; |
| 20 | background-position: 0 8px; |
| 21 | background-size: 19px auto; |
| 22 | content: " "; |
| 23 | transition: none; |
| 24 | -moz-transition: none; |
| 25 | -webkit-transition: none; |
| 26 | -o-transition: none; |
| 27 | } |
| 28 | |
| 29 | #toplevel_page_embedpress:active .wp-not-current-submenu .dashicons-admin-generic::before, |
| 30 | #toplevel_page_embedpress:hover .wp-not-current-submenu .dashicons-admin-generic::before { |
| 31 | background-position: 0 -26px; |
| 32 | } |
| 33 | |
| 34 | #toplevel_page_embedpress .current .dashicons-admin-generic::before { |
| 35 | background-position: 0 -60px; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Helper classes. |
| 40 | */ |
| 41 | .ep-label-danger { |
| 42 | color: #D54E21; |
| 43 | } |
| 44 | |
| 45 | .ep-label-success { |
| 46 | color: #5CA410; |
| 47 | } |
| 48 | |
| 49 | .ep-small-link { |
| 50 | line-height: 28px; |
| 51 | font-size: 0.8em; |
| 52 | } |
| 53 | |
| 54 | .ep-small-spacing { |
| 55 | margin-left: 5px; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * EmbedPress Settings Wrapper. |
| 60 | */ |
| 61 | #embedpress-settings-wrapper #setting-error-settings_updated { |
| 62 | margin-top: 42px; |
| 63 | } |
| 64 | |
| 65 | #embedpress-settings-wrapper .nav-tab-wrapper .nav-tab:not(.nav-tab-active):hover { |
| 66 | color: #555; |
| 67 | } |
| 68 | |
| 69 | #embedpress-settings-wrapper .nav-tab-wrapper .nav-tab-active { |
| 70 | border-top: 2px solid #655997; |
| 71 | color: #655997; |
| 72 | } |
| 73 | |
| 74 | #embedpress-settings-wrapper > header { |
| 75 | display: -webkit-box; |
| 76 | display: -moz-box; |
| 77 | display: -ms-flexbox; |
| 78 | display: -webkit-flex; |
| 79 | display: flex; |
| 80 | flex-direction: row; |
| 81 | justify-content: space-between; |
| 82 | } |
| 83 | |
| 84 | #embedpress-settings-wrapper > header h1 small { |
| 85 | font-size: .5em; |
| 86 | margin-left: 15px; |
| 87 | } |
| 88 | |
| 89 | #embedpress-settings-wrapper > header h1 small a { |
| 90 | color: #777; |
| 91 | text-decoration: none; |
| 92 | } |
| 93 | |
| 94 | #embedpress-settings-wrapper > header > a { |
| 95 | margin-right: 16px; |
| 96 | margin-top: 10px; |
| 97 | max-height: 30px; |
| 98 | } |
| 99 | |
| 100 | #embedpress-settings-wrapper > header > a img { |
| 101 | padding-top: 5px; |
| 102 | } |
| 103 | |
| 104 | #embedpress-settings-wrapper a { |
| 105 | color: #777; |
| 106 | } |
| 107 | |
| 108 | #embedpress-settings-wrapper a:link, |
| 109 | #embedpress-settings-wrapper a:visited, |
| 110 | #embedpress-settings-wrapper a:active, |
| 111 | #embedpress-settings-wrapper a:hover { |
| 112 | text-decoration: none; |
| 113 | } |
| 114 | |
| 115 | #embedpress-settings-wrapper > header a img, |
| 116 | #embedpress-settings-wrapper a, |
| 117 | #embedpress-settings-wrapper button, |
| 118 | #embedpress-settings-wrapper button::before { |
| 119 | -webkit-transition: all 200ms ease-in-out; |
| 120 | -moz-transition: all 200ms ease-in-out; |
| 121 | -o-transition: all 200ms ease-in-out; |
| 122 | transition: all 200ms ease-in-out; |
| 123 | } |
| 124 | |
| 125 | #embedpress-settings-wrapper a:hover { |
| 126 | color: #9D94C9; |
| 127 | } |
| 128 | |
| 129 | #embedpress-settings-wrapper a:hover img { |
| 130 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; |
| 131 | filter: alpha(opacity=75); |
| 132 | -moz-opacity: .75; |
| 133 | -khtml-opacity: .75; |
| 134 | opacity: .75; |
| 135 | } |
| 136 | |
| 137 | #embedpress-settings-wrapper input:not([type="checkbox"]):not([type="radio"]) { |
| 138 | -webkit-border-radius: 4px; |
| 139 | -moz-border-radius: 4px; |
| 140 | border-radius: 4px; |
| 141 | padding: 4.5px 10px; |
| 142 | } |
| 143 | |
| 144 | #embedpress-settings-wrapper input:focus, |
| 145 | #embedpress-settings-wrapper select:focus, |
| 146 | #embedpress-settings-wrapper textarea:focus, |
| 147 | #embedpress-settings-wrapper button:not(.notice-dismiss):not([type="submit"]):active, |
| 148 | #embedpress-settings-wrapper button:not(.notice-dismiss):not([type="submit"]):focus, |
| 149 | #embedpress-settings-wrapper a:active, |
| 150 | #embedpress-settings-wrapper a:focus { |
| 151 | -webkit-box-shadow: 0 0 2px rgba(101, 89, 151, .8); |
| 152 | -moz-box-shadow: 0 0 2px rgba(101, 89, 151, .8); |
| 153 | box-shadow: 0 0 2px rgba(101, 89, 151, .8); |
| 154 | } |
| 155 | |
| 156 | #embedpress-settings-wrapper input:focus, |
| 157 | #embedpress-settings-wrapper select:focus, |
| 158 | #embedpress-settings-wrapper textarea:focus, |
| 159 | #embedpress-settings-wrapper button:not(.notice-dismiss):not([type="submit"]):active, |
| 160 | #embedpress-settings-wrapper button:not(.notice-dismiss):not([type="submit"]):focus { |
| 161 | border-color: #9D94C9; |
| 162 | } |
| 163 | |
| 164 | #embedpress-settings-wrapper input[type="radio"]::before { |
| 165 | background-color: #9D94C9; |
| 166 | } |
| 167 | |
| 168 | #embedpress-settings-wrapper button:not(.notice-dismiss) { |
| 169 | -webkit-border-radius: 5px; |
| 170 | -moz-border-radius: 5px; |
| 171 | border-radius: 5px; |
| 172 | text-shadow: initial; |
| 173 | -webkit-box-shadow: initial; |
| 174 | -moz-box-shadow: initial; |
| 175 | box-shadow: initial; |
| 176 | vertical-align: middle; |
| 177 | line-height: 0; |
| 178 | min-height: 28px; |
| 179 | text-decoration: none; |
| 180 | padding: 15px 10px; |
| 181 | border-width: 2px; |
| 182 | border-style: solid; |
| 183 | } |
| 184 | |
| 185 | #embedpress-settings-wrapper button:not(.notice-dismiss):hover, |
| 186 | #embedpress-settings-wrapper button:not(.notice-dismiss):active, |
| 187 | #embedpress-settings-wrapper button:not(.notice-dismiss):focus { |
| 188 | outline: none; |
| 189 | -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); |
| 190 | -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); |
| 191 | box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05); |
| 192 | } |
| 193 | |
| 194 | #embedpress-settings-wrapper .button-primary { |
| 195 | background-color: #FFB300; |
| 196 | border-color: #C58C07; |
| 197 | color: #754D26; |
| 198 | } |
| 199 | |
| 200 | #embedpress-settings-wrapper .button-primary:hover, |
| 201 | #embedpress-settings-wrapper .button-primary:active, |
| 202 | #embedpress-settings-wrapper .button-primary:focus { |
| 203 | background-color: #F3AC04; |
| 204 | color: #333; |
| 205 | } |
| 206 | |
| 207 | #embedpress-settings-wrapper button:not(.notice-dismiss).button-secondary { |
| 208 | background-color: #655997; |
| 209 | border-color: #363050; |
| 210 | color: #FFF; |
| 211 | } |
| 212 | |
| 213 | #embedpress-settings-wrapper button:not(.notice-dismiss).button-secondary:hover { |
| 214 | background-color: #5A4F87; |
| 215 | } |
| 216 | |
| 217 | #embedpress-settings-footer > div { |
| 218 | display: -webkit-box; |
| 219 | display: -moz-box; |
| 220 | display: -ms-flexbox; |
| 221 | display: -webkit-flex; |
| 222 | display: flex; |
| 223 | justify-content: space-between; |
| 224 | padding-right: 16px; |
| 225 | } |
| 226 | |
| 227 | #embedpress-settings-footer > div ul li { |
| 228 | display: inline; |
| 229 | } |
| 230 | |
| 231 | #embedpress-settings-footer > div ul li:not(:first-child) { |
| 232 | margin-left: 15px; |
| 233 | } |
| 234 |