PluginProbe
Theme Switcha – Easily Switch Themes for Development and Testing / 3.0
Theme Switcha – Easily Switch Themes for Development and Testing v3.0
3.4.5 trunk 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.1 3.2 3.3 3.3.1 3.3.2 All 33 releases
theme-switcha / css / settings.css

settings.css in Theme Switcha – Easily Switch Themes for Development and Testing 3.0, at css/settings.css

72 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Theme Switcha - Settings Styles */
2
3 .theme-switcha-version { color: #c7c7c7; font-size: 90%; }
4
5 .wp-admin h2 { margin-top: 30px; }
6
7 .wp-admin .plugin-wrap { width: 100%; overflow: hidden; }
8 .wp-admin .plugin-intro { float: left; width: 48%; }
9 .wp-admin .plugin-intro p:first-child { margin-top: 0; }
10 .wp-admin .plugin-intro p:last-child { margin-bottom: 0; }
11 .wp-admin .book-blurb { float: right; width: 48%; }
12 .wp-admin .book-blurb a { width: 240px; height: 60px; display: block; opacity: 0.9; }
13 .wp-admin .book-blurb a:hover { opacity: 1.0; }
14 .wp-admin .book-blurb img { width: 240px; height: 60px; display: block; }
15
16 @media (max-width: 580px) {
17 .wp-admin .plugin-intro, .wp-admin .book-blurb { float: none; width: 100%; }
18 .wp-admin .book-blurb { margin: 20px 0 10px 0; }
19 }
20
21 .wp-admin .custom-label { display: block; color: #777; font-style: italic; font-size: 14px; line-height: 1.5; }
22
23 .wp-admin .light-text { color: #777; font-size: 80%; }
24
25 .wp-admin .inline-block { display: inline-block; }
26
27 .wp-admin input[type="text"] { width: 55%; }
28 .wp-admin textarea { width: 77%; }
29
30 @media (max-width: 1000px) {
31 .wp-admin input[type="text"] { width: 77%; }
32 .wp-admin textarea { width: 88%; }
33 }
34
35 .ui-dialog .ui-dialog-titlebar { font-size: 16px; }
36 .ui-dialog .ui-dialog-buttonpane, .ui-dialog .ui-dialog-titlebar, .ui-dialog .modal-dialog { text-align: center; }
37 .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; }
38 .ui-dialog .ui-dialog-buttonpane .ui-button { margin: 0; }
39 .ui-dialog .ui-dialog-buttonpane .ui-button:first-child { margin-right: 15px; }
40
41 /* thumbnails */
42
43 .theme-switcha-status { margin: 10px 0 10px 30px; padding: 0; list-style: square outside; }
44
45 .theme-switcha-thumbs { margin-top: 30px; }
46
47 .theme-screenshot:link, .theme-screenshot:visited {
48 -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
49 position: relative; display: inline-block; width: 200px; height: auto; margin: 0 10px 10px 0; padding: 10px;
50 font-size: 12px; line-height: 18px; text-decoration: none; text-align: center; cursor: pointer;
51 border: 0; border-radius: 2px; color: #efefef; background-color: #555; opacity: 0.8;
52 -webkit-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out;
53 }
54
55 .theme-screenshot:hover, .theme-screenshot:active, .theme-screenshot:focus { opacity: 1.0; color: #fff; }
56
57 .theme-active:link, .theme-active:visited { background-color: #669966; }
58
59 .theme-screenshot img {
60 -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
61 display: block; width: 100%; height: auto; margin: 0 0 8px 0; padding: 0; border-radius: 2px;
62 border: 1px solid #777; box-shadow: 0 0 10px 0 rgba(0,0,0,0.7);
63 }
64 .theme-admin {
65 position: absolute; top: 0; left: 0; width: 100%; height: 50px; line-height: 50px;
66 background-color: rgba(0,0,0,0.7);
67 }
68 .theme-child {
69 position: absolute; top: 50px; left: 0; width: 100%; height: 50px; line-height: 50px;
70 background-color: rgba(153,51,51,0.7);
71 }
72