PluginProbe
WP-Stateless – Google Cloud Storage / trunk
WP-Stateless – Google Cloud Storage vtrunk
4.4.3 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 All 62 releases
wp-stateless / static / styles / error-notice.css

error-notice.css in WP-Stateless – Google Cloud Storage trunk, at static/styles/error-notice.css

124 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .stateless-admin-notice.error,
2 .stateless-admin-notice.notice,
3 .stateless-admin-notice.admin-error {
4 position: relative;
5 display: block;
6 background-image: url('../images/stateless.svg');
7 background-repeat: no-repeat;
8 background-size: 40px 40px;
9 background-position: 15px center;
10 padding: 15px 38px 15px 70px;
11 background-color: #fff;
12 border: 1px solid #ccd0d4;
13 border-left-width: 4px;
14 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
15 }
16
17 .stateless-admin-notice.error,
18 .stateless-admin-notice.admin-error {
19 border-left-color: #fc2323 !important;
20 }
21 .stateless-admin-notice.notice {
22 border-left-color: #fc5922 !important;
23 }
24
25 .stateless-admin-notice .icon {
26 float: left;
27 width: 30px;
28 height: 30px;
29 }
30
31 .stateless-admin-notice .description {
32 margin-top: 7px;
33 }
34
35 .stateless-admin-notice .description ul {
36 margin: 0px;
37 }
38
39 .stateless-admin-notice ul {
40 margin: 0.5em 0;
41 }
42
43 .stateless-admin-notice .inner-contaner {
44 float: left;
45 }
46
47 .stateless-admin-notice .title {
48 font-weight: bold;
49 }
50
51 .stateless-admin-notice a {
52 text-decoration: underline;
53 }
54
55 .stateless-admin-notice a.notice-dismiss.dismiss,
56 .stateless-admin-notice a.button-action {
57 text-decoration: none !important;
58 }
59
60 .stateless-admin-notice a.button-action {
61 right: 40px;
62 }
63
64 .stateless-admin-notice.hidden {
65 display: none !important;
66 }
67
68 /**
69 Responisve Design:
70 */
71
72 /* Extra small devices (phones, 600px and down) */
73 @media only screen and (max-width: 600px) {
74 }
75
76 /* Small devices (portrait tablets and large phones, 600px and up) */
77 @media only screen and (min-width: 600px) {
78 }
79
80 /* Medium devices (landscape tablets, 768px and up) */
81 @media only screen and (min-width: 768px) {
82 }
83
84 /* Large devices (laptops/desktops, 992px and up) */
85 @media only screen and (max-width: 992px) {
86 .stateless-admin-notice .description {
87 margin-top: 15px;
88 }
89
90 .stateless-admin-notice a.notice-dismiss.dismiss,
91 .stateless-admin-notice a.button-action {
92 margin-top: 12px;
93 }
94 }
95
96 /* Large devices (laptops/desktops, 992px and up) */
97 @media only screen and (min-width: 992px) {
98 .stateless-admin-notice.error,
99 .stateless-admin-notice.notice {
100 background-position: 10px center;
101 padding: 15px 193px 15px 60px;
102 }
103
104 .stateless-admin-notice a.notice-dismiss.dismiss,
105 .stateless-admin-notice a.button-action {
106 position: absolute;
107 top: 50%;
108 transform: translateY(-50%);
109 }
110
111 .stateless-admin-notice a.notice-dismiss.dismiss:focus {
112 box-shadow: none;
113 }
114
115 .stateless-admin-notice a.notice-dismiss.dismiss:active,
116 .stateless-admin-notice a.button-action:active {
117 transform: translateY(-48%) !important;
118 }
119 }
120
121 /* Extra large devices (large laptops and desktops, 1200px and up) */
122 @media only screen and (min-width: 1200px) {
123 }
124