mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Theme Customizer: Improve markup/styles for opened color picker. see #19910.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20504 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cd290bf2ce
commit
5e5a6446d1
@ -219,15 +219,11 @@ class WP_Customize_Control {
|
||||
<div class="color-picker-spot"></div>
|
||||
<div class="color-picker-dropdown"></div>
|
||||
</a>
|
||||
<div class="color-picker-controls">
|
||||
<div class="farbtastic-placeholder"></div>
|
||||
<div class="color-picker-details">
|
||||
<div class="color-picker-hex">
|
||||
<span>#</span>
|
||||
<input type="text" <?php $this->link(); ?> />
|
||||
</div>
|
||||
</div>
|
||||
<div class="color-picker-control color-picker-hex">
|
||||
<span>#</span>
|
||||
<input type="text" <?php $this->link(); ?> />
|
||||
</div>
|
||||
<div class="color-picker-control farbtastic-placeholder"></div>
|
||||
</label>
|
||||
<?php
|
||||
break;
|
||||
|
@ -244,42 +244,33 @@ body {
|
||||
right: 4px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-toggle.open .color-picker-dropdown:after {
|
||||
border-color: transparent transparent #ccc transparent;
|
||||
top: 6px;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-controls {
|
||||
.customize-section .color-picker-control {
|
||||
display: none;
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-controls .farbtastic-placeholder {
|
||||
height: 195px;
|
||||
width: 195px;
|
||||
border: 4px solid #fff;
|
||||
box-shadow: 0 0 20px rgba( 0, 0, 0, 0.2 );
|
||||
|
||||
-webkit-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-hex {
|
||||
float: left;
|
||||
width: 70px;
|
||||
margin-left: 5px;
|
||||
font-family: monospace;
|
||||
background-color: #fff;
|
||||
border: 1px solid #dfdfdf;
|
||||
color: #777;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
color: #777;
|
||||
width: 70px;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-hex span {
|
||||
float: left;
|
||||
display: block;
|
||||
margin: 1px -2px 0 0;
|
||||
line-height: 15px;
|
||||
line-height: 16px;
|
||||
padding: 3px 0 3px 8px;
|
||||
text-align: right;
|
||||
-webkit-border-radius: 3px 0 0 3px;
|
||||
@ -287,12 +278,23 @@ body {
|
||||
}
|
||||
|
||||
.customize-section .color-picker-hex input[type="text"] {
|
||||
width: 50px;
|
||||
line-height: 16px;
|
||||
color: #777;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-border-radius: 0 3px 3px 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
width: 50px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-control.farbtastic-placeholder {
|
||||
width: 235px;
|
||||
margin: 5px 0 10px 25px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.customize-section .color-picker-control .farbtastic {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -101,7 +101,7 @@
|
||||
|
||||
toggle = this.container.find( '.color-picker-toggle' );
|
||||
spot = toggle.find('.color-picker-spot');
|
||||
ui = this.container.find( '.color-picker-controls' );
|
||||
ui = this.container.find( '.color-picker-control' );
|
||||
update = function( color ) {
|
||||
color = '#' + color;
|
||||
spot.css( 'background', color );
|
||||
|
Loading…
Reference in New Issue
Block a user