PluginProbe
Polylang / 3.0.1
Polylang v3.0.1
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / css / dialog.css

dialog.css in Polylang 3.0.1, at css/dialog.css

83 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* By default Polylang dialog box use WordPress jQuery UI dialog styles.
2 However WooCommerce loads its own jQuery UI dialog styles and we need to override them by ours
3 to revert to the default WordPress ones.
4 */
5 .pll-confirmation-modal.ui-widget,
6 .pll-confirmation-modal.ui-widget .ui-widget,
7 .pll-confirmation-modal .ui-widget {
8 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
9 font-size: 13px;
10 }
11 .pll-confirmation-modal.ui-dialog {
12 padding: 0;
13 z-index: 100102;
14 background: #fff;
15 border: 0;
16 color: #444;
17 }
18 .ui-dialog.pll-confirmation-modal .ui-dialog-titlebar {
19 background: #fcfcfc;
20 border-radius: 0;
21 border: 0;
22 border-bottom: 1px solid #dfdfdf;
23 height: 36px;
24 font-size: 18px;
25 font-weight: 600;
26 line-height: 2;
27 padding: 0 36px 0 16px;
28 color: #444;
29 position: static;
30 }
31 .ui-dialog.pll-confirmation-modal .ui-dialog-title {
32 float: none;
33 width: auto;
34 margin: 0;
35 }
36 .pll-confirmation-modal .ui-widget-header .ui-icon {
37 background: none;
38 position: static;
39 }
40 .pll-confirmation-modal .ui-button.ui-dialog-titlebar-close {
41 padding: 0;
42 margin: 0;
43 top: 0;
44 right: 0;
45 width: 36px;
46 height: 36px;
47 }
48 .ui-dialog.pll-confirmation-modal .ui-dialog-content {
49 border: 0;
50 padding: 16px;
51 color: #444;
52 position: static;
53 box-sizing: border-box;
54 }
55 .ui-dialog.pll-confirmation-modal .ui-dialog-buttonpane{
56 margin: 0;
57 padding: 16px;
58 border: 0;
59 background: #fcfcfc;
60 border-top: 1px solid #dfdfdf;
61 }
62 .ui-dialog.pll-confirmation-modal .ui-dialog-buttonpane .ui-button{
63 margin: 0 0 0 16px;
64 padding: 0 10px 1px;
65 background: #f7f7f7;
66 border: 1px solid #cccccc;
67 border-radius: 3px;
68 position: static;
69 line-height: 2;
70 vertical-align: top;
71 }
72 .ui-dialog.pll-confirmation-modal .ui-button:hover,
73 .ui-dialog.pll-confirmation-modal .ui-button:focus {
74 background: #fafafa;
75 border-color: #999;
76 color: #23282d;
77 }
78 .pll-confirmation-modal + .ui-widget-overlay {
79 background: #000;
80 opacity: 0.7;
81 z-index: 100101;
82 }
83