345 lines
11 KiB
CSS
345 lines
11 KiB
CSS
.sh-side-options {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 12345678902;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
padding: 0 0;
|
|
width: 400px;
|
|
transform: translateX(400px);
|
|
}
|
|
|
|
.sh-side-options.open {
|
|
transform: translateX(0px);
|
|
box-shadow: 0 0px 39px 10px rgba(0, 0, 0, 0.05);
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
}
|
|
|
|
.sh-side-options-container {
|
|
position: absolute;
|
|
bottom: 50px;
|
|
left: -125px;
|
|
width: 60px;
|
|
background-color: rgba(255, 255, 255, 1);
|
|
border-radius: 5px;
|
|
margin-right: 15px;
|
|
box-shadow: -10px 0px 20px 2px rgba(0, 0, 0, .06);
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
}
|
|
|
|
|
|
.sh-side-options-item {
|
|
display: block;
|
|
text-align: center;
|
|
margin: 0px;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
position: relative;
|
|
padding: 7px;
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.sh-side-options-item:not(:last-child) {
|
|
border-bottom: 1px solid #f1f3fc;
|
|
}
|
|
|
|
.sh-side-options-item-container {
|
|
border-radius: 4px;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.sh-side-options-item:hover .sh-side-options-item-container,
|
|
.sh-side-options-item:focus .sh-side-options-item-container,
|
|
.setting_set_btn.open .sh-side-options-item-container {
|
|
background-color: #f3f5fd;
|
|
}
|
|
|
|
.mobule_set_btn.open .sh-side-options-item-container {
|
|
background-color: #f3f5fd;
|
|
}
|
|
|
|
|
|
.sh-side-options-item i {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.sh-side-options-item:not(:hover):not(:focus) {
|
|
color: #9396a5 !important;
|
|
}
|
|
|
|
.sh-side-options-item:hover .sh-side-options-hover {
|
|
opacity: 1;
|
|
transform: translateX(-97%);
|
|
}
|
|
|
|
.sh-side-options-hover {
|
|
position: absolute;
|
|
background-color: #ffffff;
|
|
color: #32343d;
|
|
padding: 20px 26px;
|
|
transform: translateX(-70%);
|
|
left: 0px;
|
|
top: 0;
|
|
bottom: 0;
|
|
opacity: 0;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
z-index: -100;
|
|
border-top-left-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
font-size: 13px;
|
|
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.sh-side-options-hover span {
|
|
padding: 0px 3px;
|
|
}
|
|
|
|
.sh-side-options-item i {
|
|
color: #9396a5 !important;
|
|
}
|
|
|
|
.sh-side-options.open .sh-side-options-item-trigger-demos i,
|
|
.sh-side-options-item:hover i,
|
|
.sh-side-options-item:focus i {
|
|
color: #294cff !important;
|
|
}
|
|
|
|
.sh-side-demos-container {
|
|
top: 0;
|
|
left: 0;
|
|
right: 0px;
|
|
bottom: 0;
|
|
position: absolute;
|
|
overflow-y: scroll;
|
|
background-color: #fff;
|
|
background-repeat: no-repeat;
|
|
background-position: right top;
|
|
padding: 30px;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
}
|
|
|
|
|
|
.sh-side-demos-container::-webkit-scrollbar {display: none;}
|
|
.sh-side-demos-container {-ms-overflow-style: none; scrollbar-width: none;}
|
|
|
|
|
|
.sh-side-demos-container-close {
|
|
position: absolute;
|
|
top: 30px;
|
|
right: 30px;
|
|
cursor: pointer;
|
|
z-index: 97;
|
|
}
|
|
|
|
.sh-side-demos-container-close i {
|
|
color: #c5c5c5;
|
|
font-size: 18px;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
}
|
|
|
|
.sh-side-demos-container-close:hover i,
|
|
.sh-side-demos-container-close:focus i {
|
|
color: #7f7f7f;
|
|
}
|
|
|
|
|
|
/* Demo Items */
|
|
.sh-side-demos-loop-container {
|
|
position: relative;
|
|
margin: 0 0px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.sh-side-demos-item {
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-right: -4px;
|
|
margin-bottom: 25px;
|
|
width: 50%;
|
|
padding: 0 10px;
|
|
text-align: center;
|
|
transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
top: 0;
|
|
}
|
|
|
|
.sh-side-demos-item:hover {
|
|
top: -4px;
|
|
}
|
|
|
|
.sh-side-demos-item .sh-image-lazy-loading {
|
|
border-radius: 3px;
|
|
box-shadow: 0 2px 20px 1px rgba(0, 0, 0, .1);
|
|
}
|
|
|
|
.sh-side-demos-item img {
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.sh-side-demos-item-name {
|
|
font-size: 12px;
|
|
color: #32343d;
|
|
font-weight: 600;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
|
|
|
|
.rb_config {padding:0px; box-sizing: border-box;}
|
|
.rb_config h2 {color:#25282B; font-size: 20px;}
|
|
.rb_config h2 span {color:#AA20FF;}
|
|
.rb_config h6 {font-size: 14px; color:#999;}
|
|
.rb_config_sec {margin-top: 30px;}
|
|
.rb_config .config_wrap {margin-top: 10px;}
|
|
.rb_config_sub_txt {color:#999; font-weight: normal; margin-top: 5px; font-size: 12px !important; line-height: 140%;}
|
|
.rb_config .no_data {background-color: #f9f9f9; border-radius: 10px; padding-top: 50px; padding-bottom: 50px; text-align: center; font-size: 14px; color:#999;}
|
|
.rb_config .rb_config_reload {width:49%; background-color: #25282B; color:#fff; height:47px; border-radius: 10px; border:0px; float:left;}
|
|
.rb_config .rb_config_save {width:49%; background-color: #25282B; color:#fff; height:47px; border-radius: 10px; border:0px; float:left;}
|
|
.rb_config .rb_config_close {width:49%; background-color: #f1f1f1; color:#25282B; height:47px; border-radius: 10px; border:0px; float:right;}
|
|
.rb_config .skin_path_url {}
|
|
.rb_config .skin_path_url_img {float:left; width: 7%}
|
|
.rb_config .skin_path_url_txt {float:left; width: 93%; font-size: 12px; color:#999; margin-top: 4px;}
|
|
.rb_config .rows_inp_lr {}
|
|
.rb_config .rows_inp_l {float:left; width: 35%;}
|
|
.rb_config .rows_inp_l_span {color:#999; font-size: 12px; margin-top: 6px;}
|
|
.rb_config .rows_inp_l_span span {color:#000}
|
|
.rb_config .rows_inp_r {float:left; width: 65%;}
|
|
|
|
.sh-side-demos-container .input {padding-left: 15px; padding-right: 10px;}
|
|
.sh-side-demos-container .select {padding-left: 15px; padding-right: 15px; background-position: right 15px center;}
|
|
.flex_box .add_module_wrap {display: none;}
|
|
.sh-side-options-container {
|
|
position: fixed !important;
|
|
top: auto !important;
|
|
bottom: 40px !important;
|
|
right: auto !important;
|
|
left: 50% !important;
|
|
transform: translateX(-50%);
|
|
width: auto;
|
|
margin-right: 0px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 3px;
|
|
padding-right: 3px;
|
|
border-radius: 6px !important;
|
|
z-index: 999999;
|
|
}
|
|
.sh-side-options-item-container {padding-left: 10px; padding-right: 10px; min-width: 42px; min-height: 38px; position:relative; text-align: center; border-radius: 6px;}
|
|
.sh-side-options-item-container img {position: absolute; top:50%; left: 50%; transform: translate(-50%, -50%);}
|
|
.sh-side-options-item {border-bottom: 0px !important; padding: 2px;}
|
|
|
|
.add_module_btns {background-color: #fff; border:1px dashed #ccc; color:#888;}
|
|
.add_module_btns:hover {border-color:#25282B; color:#25282B;}
|
|
#clr-clear {display: none !important;}
|
|
.none_inp_cl .clr-field button {margin-top:-1px !important; left: 0px !important; width:24px !important; height:24px !important; border-radius: 6px !important;}
|
|
.none_inp_cl input {color: transparent; width:40px !important; border:0px !important; padding:0px !important;}
|
|
.none_inp_cl input:focus {border:0px !important;}
|
|
.config_wrap .tiny_input {width: 50px; height:25px; border-radius: 6px; font-size: 11px; padding: 5px; margin-left: 5px;}
|
|
.config_wrap .select_tiny {width: 70px; height:25px; border-radius: 6px; font-size: 11px; padding: 5px; background: url(../../theme/rb.basic/rb.img/icon/arr_down.svg) no-repeat right 10px center; margin-left: 5px;}
|
|
.config_wrap_flex {display: flex; gap: 0px 5px;flex-direction: row;flex-wrap: wrap; align-items: center; font-size: 12px;}
|
|
input#md_title_hide + label:before {top:-2px !important;}
|
|
input#md_title_hide + label:after {top:3px !important;}
|
|
.rb_config_sec {border-top:1px dashed #ddd; padding-top: 30px;}
|
|
.rb_config h6 {font-size: 16px;}
|
|
.config_wrap_bg {border:1px dashed #ddd; border-radius: 10px; padding: 15px 15px; margin-top: 20px;}
|
|
.config_wrap_bg_shop {border:1px dashed #ddd; border-radius: 10px; padding: 15px 15px; margin-top: 20px;}
|
|
.config_wrap_sub_tit {background-color: #F0F3F9; padding: 5px 10px; border-radius: 30px; font-size: 12px;}
|
|
#topvisual_btn_wrap {text-align: center; margin-top: -18px; z-index: 2; position: absolute; width: 100%;}
|
|
#topvisual_btn_wrap button {border:0px; padding: 10px 20px; border-radius: 30px; background-color: #F0F3F9;}
|
|
#topvisual_btn_wrap_shop {text-align: center; margin-top: -18px; z-index: 2; position: absolute; width: 100%;}
|
|
#topvisual_btn_wrap_shop button {border:0px; padding: 10px 20px; border-radius: 30px; background-color: #F0F3F9;}
|
|
|
|
.tiny_inp_cl input {width:120px !important; padding-left:30px !important; color:#000; font-size: 12px;}
|
|
.config_wrap_bg input[type="radio"] + label {padding-top: 7px;}
|
|
|
|
.rb_right_adm_btn {color:#fff; font-size: 13px; padding: 5px 10px; border-radius: 6px;}
|
|
.rb_right_err_box {border:1px dashed #ddd; padding: 10px 20px; padding-bottom: 20px; border-radius: 10px; margin-top: 20px;}
|
|
.rb_page_add_wrap {margin-top: 15px;}
|
|
.rb_page_add_wrap input {height:25px; border-radius: 4px; padding: 5px !important; font-size:12px;}
|
|
.rb_page_add_wrap button {margin-top: 0px !important;}
|
|
|
|
|
|
.selected_tags .tag {
|
|
display: block;
|
|
background: #f9f9f9;
|
|
padding: 10px 15px;
|
|
margin-bottom: 5px;
|
|
margin-top: 5px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
.tag-remove {
|
|
background: none;
|
|
border: none;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
position: absolute; top:7px; right:15px;
|
|
}
|
|
|
|
.rb_sub_page_cr {margin-bottom: 15px; margin-top: 20px;}
|
|
.rb_sub_page_cr span {background-color: #aaa; color:#fff; font-size: 11px; padding: 5px 10px; border-radius: 30px;}
|
|
|
|
#clear_cache_btn {width: 100%;color: #fff;height: 47px;border-radius: 10px;border: 0px;}
|
|
#clear_top_btn {width: 100%;color: #000;height: 47px;border-radius: 10px;border: 0px; background-color: #f0f0f0; font-size: 14px; margin-top: 20px;}
|
|
.rb_config h6 {word-break: keep-all;}
|
|
|
|
#clear_topvisual_btn {padding: 5px 10px; border-radius: 6px; color:#fff; border:0px;}
|
|
.bg_fff {background-color: #fff;}
|
|
.flex_box_inner .rb_layout_box {border:0px;}
|
|
.ui-sortable-handle {border:1px dashed #B9FAFF; margin: -0.5px; background-color: rgba(0,0,0,0.02); }
|
|
.content_box_set {border:0px; background-color: #fff; border-bottom:1px dashed #B9FAFF;}
|
|
.flex_box_inner .ui-sortable-handle {border-top:1px dashed #B9FAFF !important;}
|
|
.rb_layout_box .add_module_wrap {padding: 0px !important;}
|
|
.rb_layout_box .add_module_wrap .add_module_btns {
|
|
width: auto;
|
|
position: absolute;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
padding-left: 7px;
|
|
padding-right: 7px;
|
|
border-radius: 4px;
|
|
background-color: #fff;
|
|
height: 30px;
|
|
font-size: 12px;
|
|
z-index: 97;
|
|
width: 60px;
|
|
}
|
|
|
|
.flex_box_inner {
|
|
position: relative;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#rb_sidemenu .flex_box_inner {display: none !important;}
|
|
.ml-0 {margin-left: 0px !important;}
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.sh-side-options {
|
|
/*display: none;*/
|
|
}
|
|
|
|
.sh-side-options {
|
|
width: 370px;
|
|
transform: translateX(370px);
|
|
}
|
|
|
|
.sh-side-options-container {
|
|
bottom:20px;
|
|
left: -70px;
|
|
margin-right: 0px;
|
|
width: 50px;
|
|
display: none;}
|
|
}
|
|
|
|
.sh-side-options-item {padding-bottom: 5px; padding-top: 5px;}
|
|
|
|
#rb_topvisual {width: 100%}
|
|
#rb_topvisual_shop {width: 100%;}
|
|
|
|
}
|
|
|
|
|