| 1 |
#vs_template *{ |
| 2 |
font-family: vs-rubik,rubik,vs-iransans,tahoma; |
| 3 |
transition: color 350ms,background 350ms,border-color 350ms,box-shadow 350ms; |
| 4 |
box-sizing:border-box; |
| 5 |
} |
| 6 |
.vs_template { |
| 7 |
display: none; |
| 8 |
position: fixed; |
| 9 |
pointer-events: all; |
| 10 |
background: rgba(0,0,0,0.70); |
| 11 |
top: 0; |
| 12 |
z-index: 150000; |
| 13 |
cursor: initial; |
| 14 |
height: 100%; |
| 15 |
width: 100%; |
| 16 |
font-family: vs-rubik,rubik,vs-iransans,tahoma; |
| 17 |
|
| 18 |
right: 0; |
| 19 |
display: table; |
| 20 |
vertical-align: middle |
| 21 |
} |
| 22 |
.vs_template_middle { |
| 23 |
margin: auto; |
| 24 |
width: 600px; |
| 25 |
height: auto;box-shadow: 0 0 50px 0px rgba(0, 0, 0, 1); |
| 26 |
text-align: center; |
| 27 |
display: inline-block; |
| 28 |
position: absolute; |
| 29 |
padding: 0 0; |
| 30 |
overflow:none;background: #fff; |
| 31 |
top:50%;right:50%; |
| 32 |
border-radius: 7px; |
| 33 |
overflow: hidden; |
| 34 |
transform:translate(50%,-50%) |
| 35 |
} |
| 36 |
|
| 37 |
.vs_template_title { |
| 38 |
padding: 00px; |
| 39 |
font-size: 15px; |
| 40 |
font-weight: 700; |
| 41 |
text-align: right; |
| 42 |
position:relative; |
| 43 |
background: #f2f5f8; |
| 44 |
box-sizing: border-box; |
| 45 |
float: right; |
| 46 |
width: 100%; |
| 47 |
z-index: 1; |
| 48 |
height:50px; |
| 49 |
top: 0; |
| 50 |
} |
| 51 |
.vs_template_title h3{ |
| 52 |
margin:0px !important; |
| 53 |
float: left;line-height: 50px !important; |
| 54 |
color:rgb(48, 56, 63); |
| 55 |
line-height:1 !important; |
| 56 |
padding:0 20px !important; |
| 57 |
line-height:50px !important; |
| 58 |
font-size:18px !important; |
| 59 |
|
| 60 |
} |
| 61 |
|
| 62 |
.vs_template_cancel { |
| 63 |
cursor: pointer; |
| 64 |
height:50px; |
| 65 |
line-height:50px; |
| 66 |
padding:0 20px; |
| 67 |
background: rgb(240, 71, 71); |
| 68 |
color:#ffffff; |
| 69 |
float:right; |
| 70 |
} |
| 71 |
.vs_template_cancel:hover{ |
| 72 |
background: rgb(185, 25, 25); |
| 73 |
} |
| 74 |
.vs_template_save, |
| 75 |
.vs_template_add{ |
| 76 |
cursor: pointer; |
| 77 |
background: rgb(6, 208, 142); |
| 78 |
color: rgb(255, 255, 255); |
| 79 |
height: 50px; |
| 80 |
line-height: 50px; |
| 81 |
padding: 0 20px; |
| 82 |
float: right; |
| 83 |
padding: 0 20px; |
| 84 |
} |
| 85 |
.vs_template_save:hover, |
| 86 |
.vs_template_add:hover{ |
| 87 |
background: rgb(0, 142, 96); |
| 88 |
} |
| 89 |
.vs_template_save:before, |
| 90 |
.vs_template_cancel:before, |
| 91 |
.vs_template_add:before{ |
| 92 |
width: 20px; |
| 93 |
content:""; |
| 94 |
background-size:20px; |
| 95 |
height: 20px; |
| 96 |
margin-right: 10px; |
| 97 |
margin-top: 15px; |
| 98 |
float: left; |
| 99 |
} |
| 100 |
.vs_template_save:before{ |
| 101 |
background-image:url(../image/template_save.png); |
| 102 |
} |
| 103 |
.vs_template_cancel:before{ |
| 104 |
background-image:url(../image/template_cancel.png) |
| 105 |
} |
| 106 |
.vs_template_add:before{ |
| 107 |
background-image:url(../image/template_add.png); |
| 108 |
} |
| 109 |
#vs_template_name{ |
| 110 |
width:200px; |
| 111 |
} |
| 112 |
|
| 113 |
.vs_template_content { |
| 114 |
overflow-y: auto; |
| 115 |
float: left; |
| 116 |
background: #fff; |
| 117 |
padding: 0; |
| 118 |
margin: 0; |
| 119 |
width: 100%; |
| 120 |
position:relative; |
| 121 |
padding:40px 20px; |
| 122 |
height:calc(100% - 50px); |
| 123 |
} |
| 124 |
.vs_template .vs_options_name{ |
| 125 |
width:40%; |
| 126 |
} |
| 127 |
.vs_template .vs_options_setting{ |
| 128 |
width:60%; |
| 129 |
} |
| 130 |
.vs_template_item.selected{ |
| 131 |
box-shadow:0 0 0 3px rgb(34, 113, 177) ; |
| 132 |
border-radius:7px; |
| 133 |
} |
| 134 |
.vs_template_massage{ |
| 135 |
width: 100%; |
| 136 |
padding: 20px; |
| 137 |
background: RGB(252, 179, 180); |
| 138 |
border-radius: 7px; |
| 139 |
color: rgb(255, 255, 255); |
| 140 |
display: none; |
| 141 |
opacity: 0; |
| 142 |
overflow: hidden; |
| 143 |
float: left; |
| 144 |
margin-bottom: 20px; |
| 145 |
} |
| 146 |
.vs_template_massage.vs_template_massage_active{ |
| 147 |
display:inline-block; |
| 148 |
opacity: 1; |
| 149 |
} |
| 150 |
.vs_template_options .vs_template_middle { |
| 151 |
width:991px; |
| 152 |
} |
| 153 |
|
| 154 |
.vs_template_options .vs_template_content{ |
| 155 |
display: grid; |
| 156 |
grid-template-columns: 16.66% 16.66% 16.66% 16.66% 16.66% 16.66%; |
| 157 |
} |
| 158 |
.vs_template_options li{ |
| 159 |
list-style:none; |
| 160 |
list-style: none; |
| 161 |
box-shadow: 0 0 0 3px #f2f5f8; |
| 162 |
margin: 10px; |
| 163 |
width: auto; |
| 164 |
border-radius: 7px; |
| 165 |
width: auto; |
| 166 |
border-radius: 7px; |
| 167 |
} |
| 168 |
|
| 169 |
.vs_template_remove { |
| 170 |
background: rgb(200, 96, 96); |
| 171 |
color: rgb(255, 255, 255); |
| 172 |
width: auto; |
| 173 |
border-radius: 7px; |
| 174 |
font-size: 12px; |
| 175 |
padding: 5px 10px; |
| 176 |
} |
| 177 |
.vs_template_remove:hover{ |
| 178 |
background:rgb(153, 52, 52); |
| 179 |
color:#ffffff !important; |
| 180 |
|
| 181 |
} |
| 182 |
.vs_template_name{ |
| 183 |
font-weight: 700 !important; |
| 184 |
margin-bottom: 15px; |
| 185 |
font-size: 18px; |
| 186 |
} |
| 187 |
.vs_template_remove img { |
| 188 |
display:inline-block; |
| 189 |
width:15px; |
| 190 |
display: inline-block; |
| 191 |
width: 15px; |
| 192 |
margin-right: 5px; |
| 193 |
vertical-align: top; |
| 194 |
|
| 195 |
} |
| 196 |
|
| 197 |
.vs_template_item { |
| 198 |
padding:20px; |
| 199 |
width:100%;cursor: pointer; |
| 200 |
padding: 20px; |
| 201 |
width: 100%; |
| 202 |
float: left; |
| 203 |
} |
| 204 |
.vs_template_demo .vs_template_content{ |
| 205 |
grid-template-columns: 25%25% 25% 25%; |
| 206 |
} |
| 207 |
.vs_template_demo li{ |
| 208 |
padding:0px; |
| 209 |
overflow: hidden; |
| 210 |
} |
| 211 |
.vs_template_demo li img{ |
| 212 |
width:100%; |
| 213 |
height:auto;float: left; |
| 214 |
vertical-align:top; |
| 215 |
}.vs_template_demo_link { |
| 216 |
background:rgba(2,221,129,1.00); |
| 217 |
color: rgb(255, 255, 255); |
| 218 |
width: auto; |
| 219 |
border-radius: 7px; |
| 220 |
font-size: 12px; |
| 221 |
text-decoration: none; |
| 222 |
font-size: 12px; |
| 223 |
padding: 5px 10px; |
| 224 |
text-decoration: none; |
| 225 |
width: 100%; |
| 226 |
float: left; |
| 227 |
border-radius: 00px; |
| 228 |
} |
| 229 |
.vs_template_demo_link:hover{ |
| 230 |
background:#10181f; |
| 231 |
color:#ffffff !important; |
| 232 |
} |
| 233 |
.vs_template_export .vs_template_content{ |
| 234 |
grid-template-columns: 100%; |
| 235 |
} |
| 236 |
.vs_template_import .vs_template_content{ |
| 237 |
grid-template-columns: 100%; |
| 238 |
} |
| 239 |
.vs_template textarea{ |
| 240 |
width:100%; |
| 241 |
min-height:500px; |
| 242 |
} |
| 243 |
|
| 244 |
|
| 245 |
.rtl .vs_template_title h3, |
| 246 |
.rtl .vs_template_save:before, |
| 247 |
.rtl .vs_template_cancel:before, |
| 248 |
.rtl .vs_template_add:before, |
| 249 |
.rtl .vs_template_content , |
| 250 |
.rtl .vs_template_massage, |
| 251 |
.rtl .vs_template_item, |
| 252 |
.rtl .vs_template_demo li img, |
| 253 |
.rtl .vs_template_demo_link{ |
| 254 |
float:right; |
| 255 |
} |
| 256 |
|
| 257 |
|
| 258 |
.rtl .vs_template_cancel, |
| 259 |
.rtl .vs_template_save, |
| 260 |
.rtl .vs_template_add{ |
| 261 |
float:left; |
| 262 |
} |
| 263 |
.rtl .vs_template_save::before, |
| 264 |
.rtl .vs_template_cancel::before, |
| 265 |
.rtl .vs_template_add::before{ |
| 266 |
margin-left: 10px; |
| 267 |
margin-right: 00px; |
| 268 |
} |
| 269 |
.rtl .vs_template_remove img{ |
| 270 |
margin-left: 5px; |
| 271 |
margin-right: 00px; |
| 272 |
} |