laipower/wp-content/upgrade-temp-backup/plugins/w3-total-cache/pub/css/wizard.css

200 lines
2.8 KiB
CSS
Raw Normal View History

2023-10-22 22:21:44 +00:00
/* Main container */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc-wizard-container {
2023-12-08 23:23:36 +00:00
background: #fff;
padding: 10px;
border-radius: 8px;
max-width: 900px;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Header */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_header {
2023-12-08 23:23:36 +00:00
background: #0e1920;
border-bottom: 6px solid #cdeae7;
height: 6em;
position: relative;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Main title */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_title {
2023-12-08 23:23:36 +00:00
color: #fff;
position: absolute;
bottom: 0;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Title text: "TOTAL CACHE:" */
2023-12-08 23:23:36 +00:00
#w3tc_wizard_title>span:nth-of-type(1),
#w3tc_wizard_title>span:nth-of-type(2),
#w3tc_wizard_title>span:nth-of-type(3) {
font-size: 2.5em;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Title text: "CACHE" */
2023-12-08 23:23:36 +00:00
#w3tc_wizard_title>span:nth-of-type(2) {
color: #30bec4;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Title text: "$this->config['title']" */
2023-12-08 23:23:36 +00:00
#w3tc_wizard_title>span:nth-of-type(4) {
font-size: 2.1em;
font-style: italic;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Wizard icon (w3 cube with shadow) */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_icon {
2023-12-08 23:23:36 +00:00
position: absolute;
top: 10px;
left: -2px;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/**
* Left nav / steps.
*/
ul#w3tc-options-menu {
2023-12-08 23:23:36 +00:00
position: absolute;
left: 0;
top: 30px;
margin: 0;
2023-10-22 22:21:44 +00:00
}
#w3tc-options-menu li {
2023-12-08 23:23:36 +00:00
display: block;
padding: 5px;
margin: 0;
border: 1px solid #ddd;
border-bottom: 0;
2023-10-22 22:21:44 +00:00
}
#w3tc-options-menu li:last-of-type {
2023-12-08 23:23:36 +00:00
border-bottom: 1px solid #ddd;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Active step */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc-options-menu li.is-active {
2023-12-08 23:23:36 +00:00
background-color: #0073aa;
color: #fff;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Wizard content */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_content {
2023-12-08 23:23:36 +00:00
background-image: url(../img/moon-bottom-left.png), url(../img/moon-bottom-right.png);
background-size: 15% !Important;
background-repeat: no-repeat, no-repeat;
background-position: bottom left, bottom right;
background-size: auto, auto 60%;
min-height: 545px;
padding-right: 160px;
position: relative;
}
/* Wizard content slides */
#w3tc_wizard_content .w3tc-wizard-slides {
padding: 0 10px;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Footer */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_footer {
2023-12-08 23:23:36 +00:00
width: 100%;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Buttons */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc-wizard-buttons {
2023-12-08 23:23:36 +00:00
display: flex;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
#w3tc-wizard-buttons>span {
flex: 1;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* All buttons. */
2023-12-08 23:23:36 +00:00
#w3tc-wizard-buttons>span>button {
width: 100%;
border: 0;
padding: 10px 0;
cursor: pointer;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Next and Dashboard buttons. */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc-wizard-next:enabled,
#w3tc-wizard-dashboard {
2023-12-08 23:23:36 +00:00
background-color: #825772;
color: #fff;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Miscellaneous */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
#w3tc_wizard_title,
#w3tc_wizard_content {
2023-12-08 23:23:36 +00:00
padding-left: 160px;
2023-10-22 22:21:44 +00:00
}
.w3tc-overlay {
2023-12-08 23:23:36 +00:00
display: none;
2023-10-22 22:21:44 +00:00
}
/* Spinner */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
.spinner.inline {
2023-12-08 23:23:36 +00:00
float: none;
visibility: visible;
vertical-align: top;
margin-left: 0px;
2023-10-22 22:21:44 +00:00
}
.spinner.spinner-left {
2023-12-08 23:23:36 +00:00
margin-left: 5px;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Notices */
.w3tc-notice-recommended {
2023-12-08 23:23:36 +00:00
padding-top: 5px;
2023-10-22 22:21:44 +00:00
}
.w3tc-notice-recommended .dashicons-lightbulb {
2023-12-08 23:23:36 +00:00
color: #00a0d2;
2023-10-22 22:21:44 +00:00
}
#w3tc-dbcache-recommended {
2023-12-08 23:23:36 +00:00
margin: 10px 0px;
2023-10-22 22:21:44 +00:00
}
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
/* Tables */
2023-12-08 23:23:36 +00:00
2023-10-22 22:21:44 +00:00
.widefat thead th,
.widefat td {
2023-12-08 23:23:36 +00:00
line-height: 1em;
2023-10-22 22:21:44 +00:00
}