mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-17 08:05:21 +01:00
2710bcade1
* This moves our "development" versions from .dev.js to .js (same for css). * The compressed version then moves from .js to .min.js (same for css). By switching to the standard .min convention, it sets expectations for developers, and works nicely with existing tools such as ack. fixes #21633. git-svn-id: http://core.svn.wordpress.org/trunk@21592 1a063a9b-81f0-0310-95a4-ce76da25c4cd
87 lines
1.5 KiB
CSS
87 lines
1.5 KiB
CSS
.control-section .customize-section-title {
|
|
font-family: Tahoma, Arial, sans-serif;
|
|
}
|
|
.customize-section-title:after {
|
|
right: auto;
|
|
left: 20px;
|
|
}
|
|
|
|
#customize-header-actions .button-primary {
|
|
float: left;
|
|
}
|
|
|
|
#customize-header-actions img {
|
|
float: left;
|
|
margin-right: 0;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.customize-control {
|
|
float: right;
|
|
}
|
|
|
|
.customize-control-radio input,
|
|
.customize-control-checkbox input {
|
|
margin-right: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
/*
|
|
* Dropdowns
|
|
*/
|
|
.customize-section .dropdown {
|
|
float: right;
|
|
}
|
|
|
|
.customize-section .dropdown-content {
|
|
float: right;
|
|
margin-right: 0px;
|
|
margin-left: 16px;
|
|
-webkit-border-radius: 0 3px 3px 0;
|
|
border-radius: 0 3px 3px 0;
|
|
}
|
|
|
|
.customize-control .dropdown-arrow {
|
|
right: auto;
|
|
left: 0;
|
|
|
|
border-color: #ccc;
|
|
border-style: solid;
|
|
border-width: 1px 0 1px 1px;
|
|
-webkit-border-radius: 3px 0 0 3px;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
|
|
.customize-control .dropdown-arrow:after {
|
|
right: auto;
|
|
left: 4px;
|
|
}
|
|
|
|
/*
|
|
* Color Picker
|
|
*/
|
|
.customize-control-color .dropdown {
|
|
margin-right: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.customize-section input[type="text"].color-picker-hex,
|
|
.customize-control-color .farbtastic-placeholder {
|
|
float: right;
|
|
}
|
|
|
|
/*
|
|
* Image Picker
|
|
*/
|
|
.customize-section .customize-control-image .actions {
|
|
text-align: left;
|
|
}
|
|
|
|
.customize-control-image .library,
|
|
.customize-control-image .actions,
|
|
.customize-section .customize-control-image .library ul,
|
|
.customize-section .customize-control-image .library li,
|
|
.customize-section .customize-control-image .library-content {
|
|
float: right;
|
|
}
|