updated plugin AudioIgniter
version 2.0.0
This commit is contained in:
@ -62,7 +62,7 @@
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
border-radius: 2px;
|
||||
width: auto;
|
||||
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,44 @@
|
||||
/* General */
|
||||
|
||||
.ai-settings-box {
|
||||
background-color: #ffffff;
|
||||
padding: 25px;
|
||||
border: 1px solid #D8D8D8;
|
||||
box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.ai-settings-box > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Header / Nav */
|
||||
|
||||
.ai-settings-main-content-nav-header {
|
||||
margin: 15px 0 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav {
|
||||
display: flex;
|
||||
grid-gap: 20px;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-link {
|
||||
color: #646970;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-link.is-active {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-link.is-active,
|
||||
.ai-settings-main-content-nav-link:hover {
|
||||
color: #1D2327;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-filters {
|
||||
margin-left: auto;
|
||||
}
|
1
wp-content/plugins/audioigniter/assets/css/admin/settings.min.css
vendored
Normal file
1
wp-content/plugins/audioigniter/assets/css/admin/settings.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.ai-settings-box{background-color:#fff;padding:25px;border:1px solid #d8d8d8;box-shadow:0 2px 0 rgba(0,0,0,.04)}.ai-settings-box>:last-child{margin-bottom:0}.ai-settings-main-content-nav-header{margin:15px 0 40px;display:flex;align-items:center}.ai-settings-main-content-nav{display:flex;grid-gap:20px}.ai-settings-main-content-nav-link{color:#646970;text-decoration:none;font-size:16px}.ai-settings-main-content-nav-link.is-active{font-weight:700}.ai-settings-main-content-nav-link.is-active,.ai-settings-main-content-nav-link:hover{color:#1d2327}.ai-settings-main-content-nav-filters{margin-left:auto}
|
@ -0,0 +1,48 @@
|
||||
$box-shadow-base: 0px 2px 0px rgba(0, 0, 0, 0.04);
|
||||
$border-color-base: #D8D8D8;
|
||||
$text-color-base: #646970;
|
||||
$text-color-dark: #1D2327;
|
||||
$background-color: #f2f2f2;
|
||||
|
||||
/* General */
|
||||
.ai-settings-box {
|
||||
background-color: #ffffff;
|
||||
padding: 25px;
|
||||
border: 1px solid $border-color-base;
|
||||
box-shadow: $box-shadow-base;
|
||||
|
||||
> :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Header / Nav */
|
||||
.ai-settings-main-content-nav-header {
|
||||
margin: 15px 0 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav {
|
||||
display: flex;
|
||||
grid-gap: 20px;
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-link {
|
||||
color: $text-color-base;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
|
||||
&.is-active {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
&.is-active,
|
||||
&:hover {
|
||||
color: $text-color-dark;
|
||||
}
|
||||
}
|
||||
|
||||
.ai-settings-main-content-nav-filters {
|
||||
margin-left: auto;
|
||||
}
|
Reference in New Issue
Block a user