PluginProbe
WP Directory Kit / 1.3.4
WP Directory Kit v1.3.4
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / vendor / Winter_MVC / assets / css / winter_mvc.css

winter_mvc.css in WP Directory Kit 1.3.4, at vendor/Winter_MVC/assets/css/winter_mvc.css

113 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .postbox-upload
2 {
3 max-width: 200px;
4 }
5
6 .postbox-upload-multiple .custom-img-container img
7 {
8 width:200px;
9 padding-right:5px;
10 padding-bottom:5px;
11 float:left;
12 }
13
14 .winter_mvc-media {
15 display: flex;
16 flex-wrap: wrap;
17 align-items: flex-start;
18 justify-content: flex-start;
19 margin: -10px -10px;
20 }
21
22 .winter_mvc-media .winter_mvc-media-card {
23 flex: 0 0 calc(100% / 5);
24 padding: 10px 10px;
25 position: relative;
26 box-sizing: border-box;
27 height: 180px;
28 cursor: pointer;
29 }
30
31 .winter_mvc-media .winter_mvc-media-card .remove,
32 .winter_mvc-media .winter_mvc-media-card {
33 cursor: pointer;
34 }
35
36 .winter_mvc-media .winter_mvc-media-card .thumbnail {
37 width: 100%;
38 height: 100%;
39 object-fit: cover;
40 box-shadow: inset 0px 0 0 0px rgba(0, 0, 0, 0.1);
41 padding: 0;
42 padding: 0;
43 border: 1px solid #c3c4c7;
44 }
45
46 .winter_mvc-media .winter_mvc-media-card .remove {
47 position: absolute;
48 right: 15px;
49 top: 21px;
50 text-decoration: none;
51 font-size: 16px;
52 line-height: 1;
53 width: 18px;
54 height: 18px;
55 overflow: hidden;
56 }
57
58 .winter_mvc-media .winter_mvc-media-card .remove::before,
59 .winter_mvc-media .winter_mvc-media-card .remove::after {
60 content: "";
61 position: absolute;
62 height: 2px;
63 width: 100%;
64 top: 50%;
65 left: 0;
66 margin-top: -1px;
67 background: rgba(255, 255, 255, 0.79);
68 border-radius: 5px;
69 height: 3px;
70 margin-top: -4px;
71 transition: all .2s;
72 }
73
74 .winter_mvc-media .winter_mvc-media-card .remove:hover::before,
75 .winter_mvc-media .winter_mvc-media-card .remove:hover::after {
76 background: black;
77 }
78
79 .winter_mvc-media .winter_mvc-media-card .remove::before {
80 -webkit-transform: rotate(45deg);
81 -moz-transform: rotate(45deg);
82 -ms-transform: rotate(45deg);
83 -o-transform: rotate(45deg);
84 transform: rotate(45deg);
85 }
86
87 .winter_mvc-media .winter_mvc-media-card .remove::after {
88 -webkit-transform: rotate(-45deg);
89 -moz-transform: rotate(-45deg);
90 -ms-transform: rotate(-45deg);
91 -o-transform: rotate(-45deg);
92 transform: rotate(-45deg);
93 }
94
95 .winter_mvc-media .winter_mvc-media-card .move {
96 position: absolute;
97 left: 20px;
98 top: 18px;
99 text-decoration: none;
100 font-size: 16px;
101 line-height: 1;
102 width: 18px;
103 height: 18px;
104 overflow: hidden;
105 color: #fff;
106 background: #00000038;
107 padding: 1px;
108 display: flex;
109 justify-content: center;
110 align-items: center;
111 box-shadow: 0px 0 1px 0px #000;
112 }
113