Plugin Directory

Changeset 1385985


Ignore:
Timestamp:
04/04/2016 07:49:15 AM (10 years ago)
Author:
artcreativeme
Message:

New color added

Location:
colorize-admin/trunk
Files:
8 added
4 edited

Legend:

Unmodified
Added
Removed
  • colorize-admin/trunk/colorize/gray_style.css

    r1304649 r1385985  
    1 /* Common Things */
    2 
    3 
    4 
    5 html,body,div,span,applet,object,iframe,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,
    6 input {
    7     font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
    8     unicode-bidi: embed;
    9     outline: none !important;
    10     box-shadow: none !important;
    11     border-radius: 0 !important;
    12 }
    13 
    14 h1,
    15 h2,
    16 h3,
    17 h4,
    18 h5,
    19 h6 {
    20     font-family: "lucida grande", tahoma, verdana, arial, sans-serif !important;
    21     text-shadow: none!important;
    22 }
    23 
    24 html,
    25 body {
    26     background: #e9eaed;
    27 }
    28 
    29 
    30 /* Links */
    31 
    32 a {
    33     color: #3B62B6;
    34     -webkit-box-shadow: none !important;
    35     box-shadow: none !important;
    36     outline: none !important;
    37 }
    38 
    39 a:hover,
    40 a:active,
    41 a:focus,
    42 #media-upload a.del-link:hover,
    43 div.dashboard-widget-submit input:hover,
    44 .subsubsub a:hover,
    45 .subsubsub a.current:hover,
    46 .widget-top a.widget-action:focus:after {
    47     color: #D52800;
    48     -webkit-box-shadow: none !important;
    49     box-shadow: none !important;
    50     outline: none !important;
    51 }
    52 
    53 .trash a,
    54 a.widget-control-remove,
    55 #all-plugins-table .plugins a.delete,
    56 #media-items a.delete,
    57 #media-items a.delete-permanently,
    58 #nav-menu-footer .menu-delete,
    59 #search-plugins-table .plugins a.delete,
    60 .plugins a.delete,
    61 .row-actions span.delete a,
    62 .row-actions span.spam a,
    63 .row-actions span.trash a,
    64 .submitbox .submitdelete,
    65 .welcome-panel .welcome-panel-close {
    66     color: red;
    67 }
    68 
    69 
    70 /* Forms */
    71 
    72 input[type=checkbox]:checked:before {
    73     color: #0094FF;
    74 }
    75 
    76 input[type=radio]:checked:before {
    77     background: #0094FF;
    78     width: 8px;
    79     height: 8px;
    80     margin: 3px
    81 }
    82 
    83 input[type=checkbox]:focus,
    84 input[type=color]:focus,
    85 input[type=date]:focus,
    86 input[type=datetime-local]:focus,
    87 input[type=datetime]:focus,
    88 input[type=email]:focus,
    89 input[type=month]:focus,
    90 input[type=number]:focus,
    91 input[type=password]:focus,
    92 input[type=radio]:focus,
    93 input[type=search]:focus,
    94 input[type=tel]:focus,
    95 input[type=text]:focus,
    96 input[type=time]:focus,
    97 input[type=url]:focus,
    98 input[type=week]:focus,
    99 select:focus,
    100 textarea:focus {
    101     border-color: #aaa;
    102     -webkit-box-shadow: none;
    103     box-shadow: none;
    104 }
    105 
    106 input[type=checkbox],
    107 input[type=color],
    108 input[type=date],
    109 input[type=datetime-local],
    110 input[type=datetime],
    111 input[type=email],
    112 input[type=month],
    113 input[type=number],
    114 input[type=password],
    115 input[type=radio],
    116 input[type=search],
    117 input[type=tel],
    118 input[type=text],
    119 input[type=time],
    120 input[type=url],
    121 input[type=week],
    122 select,
    123 textarea,
    124 input.code {
    125     padding: 5px;
    126 }
    127 
    128 input[type=radio] {
    129     border-radius: 50% !important;
    130 }
    131 
    132 .wp-core-ui input[type="reset"]:hover,
    133 .wp-core-ui input[type="reset"]:active {
    134     color: #0099d5;
    135 }
    136 
    137 
    138 /* Core UI */
    139 
    140 .wp-core-ui .button-primary {
    141     background: #61757A;
    142     border: none;
    143     color: white;
    144     -webkit-box-shadow: none !important;
    145     box-shadow: none !important;
    146     text-shadow: none !important;
    147 }
    148 
    149 .wp-core-ui .button-primary:hover,
    150 .wp-core-ui .button-primary:focus,
    151 .wp-core-ui .button-primary:active {
    152     background: #738E96;
    153     color: white;
    154 }
    155 
    156 .wp-core-ui .button-primary[disabled],
    157 .wp-core-ui .button-primary:disabled,
    158 .wp-core-ui .button-primary.button-primary-disabled,
    159 .wp-core-ui .button-primary.disabled {
    160     color: #c7d1c8 !important;
    161     background: #64A375 !important;
    162 }
    163 
    164 .wp-core-ui .wp-ui-primary {
    165     color: #fff;
    166     background-color: #738e96;
    167 }
    168 
    169 .wp-core-ui .wp-ui-text-primary {
    170     color: #738e96;
    171 }
    172 
    173 .wp-core-ui .wp-ui-highlight {
    174     color: #fff;
    175     background-color: #738E96;
    176 }
    177 
    178 .wp-core-ui .wp-ui-text-highlight {
    179     color: #738E96;
    180 }
    181 
    182 .wp-core-ui .wp-ui-notification {
    183     color: #fff;
    184     background-color: #aa9d88;
    185 }
    186 
    187 .wp-core-ui .wp-ui-text-notification {
    188     color: #aa9d88;
    189 }
    190 
    191 .wp-core-ui .wp-ui-text-icon {
    192     color: #f2fcff;
    193 }
    194 
    195 
    196 /* List tables */
    197 
    198 .wrap .add-new-h2:hover,
    199 #add-new-comment a:hover,
    200 .tablenav .tablenav-pages a:hover,
    201 .tablenav .tablenav-pages a:focus {
    202     color: #fff;
    203     background-color: #738e96;
    204 }
    205 
    206 .view-switch a.current:before {
    207     color: #738e96;
    208 }
    209 
    210 .view-switch a:hover:before {
    211     color: #aa9d88;
    212 }
    213 
    214 .post-com-count:hover:after {
    215     border-top-color: #738e96;
    216 }
    217 
    218 .post-com-count:hover span {
    219     color: #fff;
    220     background-color: #738e96;
    221 }
    222 
    223 strong .post-com-count:after {
    224     border-top-color: #aa9d88;
    225 }
    226 
    227 strong .post-com-count span {
    228     background-color: #aa9d88;
    229 }
    230 
    231 
    232 /* Admin Menu */
    233 
    234 #adminmenuback,
    235 #adminmenuwrap,
    236 #adminmenu {
    237     background: #fff;
    238     margin: 0;
    239 }
    240 
    241 #adminmenuback {
    242     z-index: 0;
    243     border-right: 1px solid #E4E4E4;
    244 }
    245 
    246 #adminmenu a,
    247 #adminmenu div.wp-menu-image:before {
    248     color: #555;
    249 }
    250 
    251 #adminmenu a {
    252     background: #F9F9F9;
    253     border-bottom: 1px solid #F0F0F0;
    254     cursor: pointer !important;
    255 }
    256 
    257 #adminmenu li.wp-menu-separator {
    258     display: none !important;
    259 }
    260 
    261 #adminmenu a:hover,
    262 #adminmenu li.menu-top:hover,
    263 #adminmenu li.opensub > a.menu-top,
    264 #adminmenu li > a.menu-top:focus {
    265     color: #fff;
    266     background-color: #738E96;
    267 }
    268 
    269 #adminmenu li.menu-top:hover div.wp-menu-image:before,
    270 #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
    271     color: #fff;
    272 }
    273 
    274 
    275 /* Active tabs use a bottom border color that matches the page background color. */
    276 
    277 .about-wrap h2 .nav-tab-active,
    278 .nav-tab-active,
    279 .nav-tab-active:hover {
    280     background-color: #e9eaed;
    281     border-bottom-color: #e9eaed;
    282 }
    283 
    284 
    285 /* Admin Menu: submenu */
    286 
    287 #adminmenu .wp-submenu,
    288 #adminmenu .wp-has-current-submenu .wp-submenu,
    289 #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
    290 .folded #adminmenu .wp-has-current-submenu .wp-submenu,
    291 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
    292     background: #fff;
    293     padding: 0 !important;
    294 }
    295 
    296 #adminmenu .wp-not-current-submenu .wp-submenu,
    297 .folded #adminmenu .wp-has-current-submenu .wp-submenu {
    298     padding: 3px !important;
    299     border: 1px solid #ddd;
    300 }
    301 
    302 #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
    303     right: -1px;
    304 }
    305 
    306 #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
    307     border-right-color: #FFF;
    308 }
    309 
    310 #adminmenu .wp-submenu .wp-submenu-head {
    311     color: #d5dddf;
    312 }
    313 
    314 #adminmenu .wp-submenu a,
    315 #adminmenu .wp-has-current-submenu .wp-submenu a,
    316 .folded #adminmenu .wp-has-current-submenu .wp-submenu a,
    317 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
    318 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
    319     color: #767676;
    320     background: none;
    321     border: none;
    322 }
    323 
    324 #adminmenu .wp-submenu a:focus,
    325 #adminmenu .wp-submenu a:hover,
    326 #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
    327 #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
    328 .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,
    329 .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,
    330 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
    331 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
    332 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
    333 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
    334     color: #738E96;
    335 }
    336 
    337 
    338 /* Admin Menu: current */
    339 
    340 #adminmenu .wp-submenu li.current a,
    341 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
    342 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
    343     color: #000;
    344 }
    345 
    346 #adminmenu .wp-submenu li.current a:hover,
    347 #adminmenu .wp-submenu li.current a:focus,
    348 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
    349 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
    350 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
    351 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
    352     color: #738E96;
    353 }
    354 
    355 ul#adminmenu a.wp-has-current-submenu:after,
    356 ul#adminmenu > li.current > a.current:after {
    357     border-right-color: #E4E4E4;
    358     display: none;
    359 }
    360 
    361 #adminmenu li.current a.menu-top,
    362 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
    363 #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
    364 .folded #adminmenu li.current.menu-top {
    365     color: #fff;
    366     background: #738E96;
    367 }
    368 
    369 #adminmenu .wp-submenu .wp-submenu-head,
    370 #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head {
    371     background: none;
    372     color: #000;
    373     padding: 5px;
    374     border-bottom: 1px #ddd solid;
    375     margin: 0;
    376 }
    377 
    378 #adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
    379     color: #fff;
    380 }
    381 
    382 
    383 /* Admin Menu: bubble */
    384 
    385 #adminmenu .awaiting-mod,
    386 #adminmenu .update-plugins,
    387 #adminmenu li.current a .awaiting-mod,
    388 #adminmenu li a.wp-has-current-submenu .update-plugins,
    389 #adminmenu li:hover a .awaiting-mod,
    390 #adminmenu li.menu-top:hover > a .update-plugins {
    391     color: #FFFFFF;
    392     background: #FC5F6B !important;
    393 }
    394 
    395 #adminmenu li.current a .awaiting-mod,
    396 #adminmenu li a.wp-has-current-submenu .update-plugins,
    397 #adminmenu li:hover a .awaiting-mod,
    398 #adminmenu li.menu-top:hover > a .update-plugins {
    399     color: #fff;
    400     background: #627c83;
    401 }
    402 
    403 
    404 /* Admin Menu: collapse button */
    405 
    406 #collapse-menu {
    407     color: #777;
    408 }
    409 
    410 #collapse-menu:hover {
    411     color: #555;
    412 }
    413 
    414 #collapse-button div:after {
    415     color: #777;
    416 }
    417 
    418 #collapse-menu:hover #collapse-button div:after {
    419     color: #555;
    420 }
    421 
    422 
    423 /* Admin Bar: search */
    424 
    425 #wpadminbar #adminbarsearch:before {
    426     color: #f2fcff;
    427 }
    428 
    429 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
    430     color: #fff;
    431     background: #879ea5;
    432 }
    433 
    434 #wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
    435     color: #fff;
    436     opacity: 0.7;
    437 }
    438 
    439 #wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
    440     color: #fff;
    441     opacity: 0.7;
    442 }
    443 
    444 #wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
    445     color: #fff;
    446     opacity: 0.7;
    447 }
    448 
    449 #wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
    450     color: #fff;
    451     opacity: 0.7;
    452 }
    453 
    454 .welcome-panel,
    455 #contextual-help-link-wrap,
    456 #screen-options-link-wrap,
    457 .postbox,
    458 #menu-management .menu-edit,
    459 #menu-settings-column .accordion-container,
    460 .feature-filter,
    461 .imgedit-group,
    462 .manage-menus,
    463 .menu-item-handle,
    464 .popular-tags,
    465 .stuffbox,
    466 .widget-inside,
    467 .widget-top,
    468 .widgets-holder-wrap,
    469 .wp-editor-container,
    470 p.popular-tags,
    471 table.widefat {
    472     border-color: #D7D7D7;
    473 }
    474 
    475 .postbox .hndle,
    476 .stuffbox .hndle {
    477     border-bottom: 1px solid #E7E7E7;
    478     background: #F9F9F9;
    479 }
    480 
    481 
    482 /* Pointers */
    483 
    484 .wp-pointer .wp-pointer-content h3 {
    485     background-color: #738E96;
    486     border-color: #8faf91;
    487 }
    488 
    489 .wp-pointer .wp-pointer-content h3:before {
    490     color: #738E96;
    491 }
    492 
    493 .wp-pointer.wp-pointer-top .wp-pointer-arrow,
    494 .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
    495 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
    496 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
    497     border-bottom-color: #738E96;
    498 }
    499 
    500 
    501 /* Media */
    502 
    503 .media-item .bar,
    504 .media-progress-bar div {
    505     background-color: #738E96;
    506 }
    507 
    508 .details.attachment {
    509     -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #738E96;
    510     box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #738E96;
    511 }
    512 
    513 .attachment.details .check {
    514     background-color: #738E96;
    515     -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #738E96;
    516     box-shadow: 0 0 0 1px #fff, 0 0 0 2px #738E96;
    517 }
    518 
    519 .media-selection .attachment.selection.details .thumbnail {
    520     -webkit-box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #738E96;
    521     box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #738E96;
    522 }
    523 
    524 
    525 /* Themes */
    526 
    527 .theme-browser .theme.active .theme-name,
    528 .theme-browser .theme.add-new-theme:hover:after {
    529     background: none !important;
    530 }
    531 
    532 .theme-browser .theme .theme-actions,
    533 .theme-browser .theme.active .theme-actions {
    534     background: #ECECEC!important;
    535     height: 39px;
    536 }
    537 
    538 .theme-browser .theme.add-new-theme:hover,
    539 .theme-browser .theme.active .theme-name,
    540 .drag-drop #drag-drop-area:hover {
    541     background: #738E96 !important;
    542     -webkit-box-shadow: none !important;
    543     box-shadow: none !important;
    544 }
    545 
    546 .theme-browser .theme.add-new-theme:hover span:after {
    547     color: #738E96;
    548 }
    549 
    550 .theme-section.current,
    551 .theme-filter.current {
    552     border-bottom-color: #738e96;
    553 }
    554 
    555 body.more-filters-opened .more-filters {
    556     color: #fff;
    557     background-color: #738e96;
    558 }
    559 
    560 body.more-filters-opened .more-filters:before {
    561     color: #fff;
    562 }
    563 
    564 body.more-filters-opened .more-filters:hover,
    565 body.more-filters-opened .more-filters:focus {
    566     background-color: #738E96;
    567     color: #fff;
    568 }
    569 
    570 body.more-filters-opened .more-filters:hover:before,
    571 body.more-filters-opened .more-filters:focus:before {
    572     color: #fff;
    573 }
    574 
    575 
    576 /* Widgets */
    577 
    578 .widgets-chooser li.widgets-chooser-selected {
    579     background-color: #738E96;
    580     color: #fff;
    581 }
    582 
    583 .widgets-chooser li.widgets-chooser-selected:before,
    584 .widgets-chooser li.widgets-chooser-selected:focus:before {
    585     color: #fff;
    586 }
    587 
    588 .theme-overlay .theme-header .close:hover {
    589     background: #F00000;
    590     border-color: #F00;
    591     color: #FFF;
    592 }
    593 
    594 .theme-overlay .theme-header .close:focus:before,
    595 .theme-overlay .theme-header .close:hover:before {
    596     color: #FFF;
    597 }
    598 
    599 
    600 /* Customize */
    601 
    602 #customize-theme-controls .widget-area-select .selected {
    603     background-color: #738E96;
    604     color: #fff;
    605 }
    606 
    607 
    608 /* jQuery UI Slider */
    609 
    610 .wp-slider .ui-slider-handle,
    611 .wp-slider .ui-slider-handle.ui-state-hover,
    612 .wp-slider .ui-slider-handle.focus {
    613     background: #738E96;
    614     border-color: #80a583;
    615     -webkit-box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
    616     box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
    617 }
    618 
    619 
    620 /* Thickbox: Plugin information */
    621 
    622 #sidemenu a.current {
    623     background: #f1f1f1;
    624     border-bottom-color: #f1f1f1;
    625 }
    626 
    627 #plugin-information .action-button {
    628     background: #738E96;
    629 }
    630 
    631 
    632 /* Responsive Component */
    633 
    634 div#wp-responsive-toggle a:before {
    635     color: #f2fcff;
    636 }
    637 
    638 .wp-responsive-open div#wp-responsive-toggle a {
    639     border-color: transparent;
    640     background: #738E96;
    641 }
    642 
    643 .star-rating .star {
    644     color: #738E96;
    645 }
    646 
    647 .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
    648     background: #627c83;
    649 }
    650 
    651 #contextual-help-back,
    652 .contextual-help-tabs .active {
    653     background: #E9EAED;
    654 }
    655 
    656 #wp-content-editor-tools {
    657     background: #e9eaed;
    658 }
    659 
    660 body#tinymce,
    661 body.wp-autoresize,
    662 body#tinymce p {
    663     margin: 0px !important
    664 }
    665 
    666 .wrap .add-new-h2,
    667 .wrap .add-new-h2:active {
    668     background: #939393;
    669     color: #fff;
    670 }
    671 
    672 #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img {
    673     border: none;
    674 }
    675 
    676 .drag-drop #drag-drop-area:hover {
    677     border-color: #738E96;
    678 }
    679 
    680 .drag-drop #drag-drop-area:hover p {
    681     color: #fff;
    682 }
    683 
    684 .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
    685     border-width: 9px;
    686     margin-top: -4px;
    687     top: 13px;
    688 }
    689 
    690 .plugin-install #the-list td,
    691 .plugins .active td,
    692 .plugins .active th,
    693 .plugins .inactive td,
    694 .plugins .inactive th,
    695 .upgrade .plugins td,
    696 .upgrade .plugins th {
    697     -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .1) !important;
    698     box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .1) !important;
    699 }
     1html,body,div,span,applet,object,iframe,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input{font-family:"lucida grande",tahoma,verdana,arial,sans-serif;unicode-bidi:embed;outline:none!important;box-shadow:none!important;border-radius:0!important}h1,h2,h3,h4,h5,h6{font-family:"lucida grande",tahoma,verdana,arial,sans-serif!important;text-shadow:none!important}html,body{background:#e9eaed}a{color:#3B62B6;-webkit-box-shadow:none!important;box-shadow:none!important;outline:none!important}a:hover,a:active,a:focus,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.widget-top a.widget-action:focus:after{color:#D52800;-webkit-box-shadow:none!important;box-shadow:none!important;outline:none!important}.trash a,a.widget-control-remove,#all-plugins-table .plugins a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete,.welcome-panel .welcome-panel-close{color:red}input[type=checkbox]:checked:before{color:#0094FF}input[type=radio]:checked:before{background:#0094FF;width:8px;height:8px;margin:3px}input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#aaa;-webkit-box-shadow:none;box-shadow:none}input[type=checkbox],input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=radio],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea,input.code{padding:5px}input[type=radio]{border-radius:50%!important}.wp-core-ui input[type="reset"]:hover,.wp-core-ui input[type="reset"]:active{color:#0099d5}.wp-core-ui .button-primary{background:#61757A;border:none;color:#fff;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}.wp-core-ui .button-primary:hover,.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:active{background:#738E96;color:#fff}.wp-core-ui .button-primary[disabled],.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled{color:#c7d1c8!important;background:#64A375!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#738E96}.wp-core-ui .wp-ui-text-highlight{color:#738E96}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}.wrap .add-new-h2:hover,#add-new-comment a:hover,.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#fff;background-color:#738e96}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}.post-com-count:hover:after{border-top-color:#738e96}.post-com-count:hover span{color:#fff;background-color:#738e96}strong .post-com-count:after{border-top-color:#aa9d88}strong .post-com-count span{background-color:#aa9d88}#adminmenuback,#adminmenuwrap,#adminmenu{background:#fff;margin:0}#adminmenuback{z-index:0;border-right:1px solid #E4E4E4}#adminmenu a,#adminmenu div.wp-menu-image:before{color:#555}#adminmenu a{background:#F9F9F9;border-bottom:1px solid #F0F0F0;cursor:pointer!important}#adminmenu li.wp-menu-separator{display:none!important}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub > a.menu-top,#adminmenu li > a.menu-top:focus{color:#fff;background-color:#738E96}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub > a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#e9eaed;border-bottom-color:#e9eaed}#adminmenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu{background:#fff;padding:0!important}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{padding:3px!important;border:1px solid #ddd}#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{right:-1px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#FFF}#adminmenu .wp-submenu .wp-submenu-head{color:#d5dddf}#adminmenu .wp-submenu a,#adminmenu .wp-has-current-submenu .wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a{color:#767676;background:none;border:none}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover{color:#738E96}#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a{color:#000}#adminmenu .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus{color:#738E96}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu > li.current > a.current:after{border-right-color:#E4E4E4;display:none}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,.folded #adminmenu li.current.menu-top{color:#fff;background:#738E96}#adminmenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head{background:none;color:#000;padding:5px;border-bottom:1px #ddd solid;margin:0}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li:hover a .awaiting-mod,#adminmenu li.menu-top:hover > a .update-plugins{color:#FFF;background:#FC5F6B!important}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li:hover a .awaiting-mod,#adminmenu li.menu-top:hover > a .update-plugins{color:#fff;background:#627c83}#collapse-menu{color:#777}#collapse-menu:hover{color:#555}#collapse-button div:after{color:#777}#collapse-menu:hover #collapse-button div:after{color:#555}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#879ea5}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}.welcome-panel,#contextual-help-link-wrap,#screen-options-link-wrap,.postbox,#menu-management .menu-edit,#menu-settings-column .accordion-container,.feature-filter,.imgedit-group,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border-color:#D7D7D7}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #E7E7E7;background:#F9F9F9}.wp-pointer .wp-pointer-content h3{background-color:#738E96;border-color:#8faf91}.wp-pointer .wp-pointer-content h3:before{color:#738E96}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#738E96}.media-item .bar,.media-progress-bar div{background-color:#738E96}.details.attachment{-webkit-box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #738E96;box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #738E96}.attachment.details .check{background-color:#738E96;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #738E96;box-shadow:0 0 0 1px #fff,0 0 0 2px #738E96}.media-selection .attachment.selection.details .thumbnail{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 3px #738E96;box-shadow:0 0 0 1px #fff,0 0 0 3px #738E96}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:none!important}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{background:#ECECEC!important;height:39px}.theme-browser .theme.add-new-theme:hover,.theme-browser .theme.active .theme-name,.drag-drop #drag-drop-area:hover{background:#738E96!important;-webkit-box-shadow:none!important;box-shadow:none!important}.theme-browser .theme.add-new-theme:hover span:after{color:#738E96}.theme-section.current,.theme-filter.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters{color:#fff;background-color:#738e96}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:focus{background-color:#738E96;color:#fff}body.more-filters-opened .more-filters:hover:before,body.more-filters-opened .more-filters:focus:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#738E96;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.theme-overlay .theme-header .close:hover{background:#F00000;border-color:red;color:#FFF}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#FFF}#customize-theme-controls .widget-area-select .selected{background-color:#738E96;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle.focus{background:#738E96;border-color:#80a583;-webkit-box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,0.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#738E96}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#738E96}.star-rating .star{color:#738E96}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#627c83}#contextual-help-back,.contextual-help-tabs .active{background:#E9EAED}#wp-content-editor-tools{background:#e9eaed}body#tinymce,body.wp-autoresize,body#tinymce p{margin:0!important}.wrap .add-new-h2,.wrap .add-new-h2:active{background:#939393;color:#fff}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border:none}.drag-drop #drag-drop-area:hover{border-color:#738E96}.drag-drop #drag-drop-area:hover p{color:#fff}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:9px;margin-top:-4px;top:13px}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)!important;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)!important}
  • colorize-admin/trunk/inc/admin-options.php

    r1309945 r1385985  
    4747               <option value="olive" <?php if (get_option( '_colorthemeadmin')=='olive' ) echo 'selected="Olive"'; ?> > Olive</option>
    4848               <option value="peru" <?php if (get_option( '_colorthemeadmin')=='peru' ) echo 'selected="Peru"'; ?> > Peru</option>
     49               <option value="orange" <?php if (get_option( '_colorthemeadmin')=='orange' ) echo 'selected="Orange"'; ?> > Orange</option>
    4950               <option value="purple" <?php if (get_option( '_colorthemeadmin')=='purple' ) echo 'selected="Purple"'; ?> > Purple</option>
     51               <option value="indigo" <?php if (get_option( '_colorthemeadmin')=='indigo' ) echo 'selected="Indigo"'; ?> > Indigo</option>
    5052               <option value="maroon" <?php if (get_option( '_colorthemeadmin')=='maroon' ) echo 'selected="Maroon"'; ?> > Maroon</option>
    5153               <option value="crimson" <?php if (get_option( '_colorthemeadmin')=='crimson' ) echo 'selected="Crimson"'; ?> > Crimson</option>
     
    5355               <option value="darkcyan" <?php if (get_option( '_colorthemeadmin')=='darkcyan' ) echo 'selected="Dark Cyan"'; ?> >  Dark Cyan</option>
    5456               <option value="darkorchid" <?php if (get_option( '_colorthemeadmin')=='darkorchid' ) echo 'selected="Dark Orchid"'; ?> > Dark Orchid</option>
     57               <option value="orangered" <?php if (get_option( '_colorthemeadmin')=='orangered' ) echo 'selected="Orange Red"'; ?> > Orange Red</option>
    5558               <option value="goldenrod" <?php if (get_option( '_colorthemeadmin')=='goldenrod' ) echo 'selected="Golden Rod"'; ?> > Golden Rod</option>
    5659               <option value="forestgreen" <?php if (get_option( '_colorthemeadmin')=='forestgreen' ) echo 'selected="Forest Green"'; ?> > Forest Green</option>
    5760               <option value="yellowgreen" <?php if (get_option( '_colorthemeadmin')=='yellowgreen' ) echo 'selected="Yellow Green"'; ?> > Yellow Green</option>
     61               <option value="rebeccapurple" <?php if (get_option( '_colorthemeadmin')=='rebeccapurple' ) echo 'selected="Rebecca Purple"'; ?> > Rebecca Purple</option>
    5862               <option value="lightseagreen" <?php if (get_option( '_colorthemeadmin')=='lightseagreen' ) echo 'selected="Light Sea Green"'; ?> >Light Sea Green</option>
    5963            </select>
  • colorize-admin/trunk/readme.txt

    r1339505 r1385985  
    11=== Colorize Admin ===
    2 Contributors:cicophoto
     2Contributors:cicophoto,wpvote
    33Tags:Color scheme,scheme,colorize,admin theme,admin color,color theme,custom color,colors,color theme
    44Requires at least: 4.0
    5 Tested up to: 4.4
    6 Stable tag: 1.4
     5Tested up to: 4.4.2
     6Stable tag: 1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414This is a simple plugin that will make your wp admin panel theme much more pleasant for work. Using specific colours you improve your work surrounding and simple and clean design of your wp admin panel.
    1515
    16 * 15 color themes.
     16* 20 color themes.
    1717* Tested with other popular plugins.
     18* last update 4/4/2016
     19
    1820
    1921Video:
     
    7173
    7274*  Two new color
     75
     76= 1.5 =
     77
     78*  Four new color
  • colorize-admin/trunk/wpvote-colorize-admin.php

    r1339505 r1385985  
    55Description: This is a simple plugin that will make your wp admin panel theme much more pleasant for work.
    66Author: cicophoto
    7 Version: 1.4
     7Version: 1.5
    88Author URI: http://wordpress.org/plugins/colorize-admin
    99License: GNU/GPL http://www.gnu.org/copyleft/gpl.html
Note: See TracChangeset for help on using the changeset viewer.