PluginProbe
پینوا | Pinova / trunk
پینوا | Pinova vtrunk
pinova / assets / css / admin.css

admin.css in پینوا | Pinova trunk, at assets/css/admin.css

135 lines 2.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .metabox-holder form {
2 background: #ffffff;
3 padding: 32px;
4 border-radius: 16px;
5 border: 1px solid #e7e9ef;
6 box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
7 margin-top: 25px;
8 }
9
10 .nav-tab-wrapper {
11 display: flex;
12 gap: 8px;
13 background: transparent !important;
14 border: none !important;
15 padding-bottom: 10px;
16 }
17
18 .nav-tab {
19 border: none !important;
20 background: #f3f5f8 !important;
21 padding: 6px 16px !important;
22 border-radius: 10px;
23 font-size: 14px;
24 color: #444 !important;
25 cursor: pointer;
26 transition: 0.25s;
27 box-shadow: inset 0 0 0 1px #e4e7ec;
28 }
29
30 .nav-tab:hover {
31 background: #e8ecf4 !important;
32 }
33
34 .nav-tab-active {
35 background: #4c6fff !important;
36 color: #fff !important;
37 box-shadow: 0 3px 10px rgba(76, 111, 255, 0.35);
38 }
39
40 .nav-tab-active:focus, .nav-tab-active:hover {
41 box-shadow: 0 3px 10px rgba(76, 111, 255, 0.35);
42 background: #fff !important;
43 color: #4c6fff !important;
44 }
45
46 .form-table {
47 width: 100%;
48 border-collapse: separate;
49 border-spacing: 0 20px;
50 }
51
52 .form-table th {
53 width: 200px;
54 text-align: right;
55 font-weight: 600;
56 padding-top: 5px;
57 color: #2a2f3a;
58 font-size: 15px;
59 }
60
61 .form-table td {
62 padding: 0;
63 }
64
65 .form-table input[type="text"], .form-table input[type="number"], .form-table textarea, .form-table select {
66 background: #f8f9fc;
67 padding: 4px 10px;
68 font-size: 14px;
69 border-radius: 5px !important;
70 border: 1px solid #dfe3eb;
71 transition: all 0.25s;
72 }
73
74 .form-table input:focus, .form-table textarea:focus, .form-table select:focus {
75 background: #fff;
76 border-color: #4c6fff;
77 box-shadow: 0 0 0 4px rgba(76, 111, 255, 0.25);
78 }
79
80 .form-table textarea {
81 min-height: 120px;
82 }
83
84 .description {
85 font-size: 13px;
86 color: #6f7585 !important;
87 margin-top: 6px;
88 line-height: 1.7;
89 }
90
91 .button-primary {
92 background: #4c6fff !important;
93 border-radius: 10px !important;
94 padding: 10px 22px !important;
95 font-size: 15px;
96 border: none;
97 box-shadow: 0 6px 15px rgba(76, 111, 255, 0.35);
98 transition: 0.25s;
99 }
100
101 .button-primary:hover {
102 background: #3c59d4 !important;
103 box-shadow: 0 8px 20px rgba(76, 111, 255, 0.4);
104 }
105
106 .group {
107 animation: fadeUi 0.35s ease;
108 }
109
110 @keyframes fadeUi {
111 from {
112 opacity: 0;
113 transform: translateY(8px);
114 }
115 to {
116 opacity: 1;
117 transform: translateY(0);
118 }
119 }
120
121 #pinova_design img {
122 border-radius: 12px;
123 border: 1px solid #e3e7ef;
124 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
125 }
126
127 #pinova-test-sms-btn {
128 vertical-align: middle;
129 margin-inline-start: 10px;
130 }
131
132 textarea[name="pinova_sms[message]"] {
133 direction: ltr;
134 text-align: left;
135 }