2023-02-13 10:06:14 +01:00
|
|
|
#tips_window {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.308);
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 2001;
|
|
|
|
}
|
2023-02-13 13:26:49 +01:00
|
|
|
#tips_window_modal {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2023-02-13 10:06:14 +01:00
|
|
|
.window {
|
2023-02-13 13:26:49 +01:00
|
|
|
background-image: linear-gradient(180deg, #fffce8 0%, #ffffff 100%);
|
|
|
|
width: 640px;
|
2023-02-13 10:06:14 +01:00
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2023-02-13 13:26:49 +01:00
|
|
|
.ui-dialog .tips_header.ui-dialog-titlebar {
|
2023-02-13 10:06:14 +01:00
|
|
|
display: flex;
|
|
|
|
padding: 0px 20px;
|
|
|
|
justify-content: space-between;
|
2023-02-13 13:26:49 +01:00
|
|
|
height: fit-content;
|
|
|
|
background-color: white;
|
|
|
|
color: #161628;
|
|
|
|
}
|
|
|
|
.tips_header .title {
|
|
|
|
font-size: 15px;
|
2023-02-13 10:06:14 +01:00
|
|
|
}
|
|
|
|
.description {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.actions {
|
|
|
|
border-top: 1px solid #0000001a;
|
|
|
|
text-align: right;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.carousel {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2023-02-13 13:26:49 +01:00
|
|
|
max-width: 464px;
|
|
|
|
max-height: 290px;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding-top: 20px;
|
2023-02-13 10:06:14 +01:00
|
|
|
}
|
|
|
|
.carousel .prev_step {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
border: 0px;
|
|
|
|
background: none;
|
|
|
|
font-size: 50px;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.carousel .next_step {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
right: 0;
|
|
|
|
z-index: 1;
|
|
|
|
border: 0px;
|
|
|
|
background: none;
|
|
|
|
font-size: 50px;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.carousel .images {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 0px;
|
|
|
|
}
|
|
|
|
.carousel .images img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-02-13 13:26:49 +01:00
|
|
|
.dialog_tips .ui-dialog-buttonset {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
#tips_window_modal .ui-dialog-buttonset button.submit-cancel-tips {
|
|
|
|
border-radius: 6px;
|
|
|
|
color: #14524f;
|
|
|
|
width: fit-content;
|
|
|
|
font-size: 15px;
|
|
|
|
border: 1px solid #14524f;
|
|
|
|
height: 35px;
|
|
|
|
margin: 0px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
#tips_window_modal .ui-dialog-buttonset button.submit-next-tips {
|
|
|
|
border-radius: 6px;
|
|
|
|
color: #ffffff;
|
|
|
|
width: fit-content;
|
|
|
|
font-size: 15px;
|
|
|
|
border: 1px solid #14524f;
|
|
|
|
background-color: #14524f;
|
|
|
|
height: 35px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.dialog_tips {
|
|
|
|
border-radius: 10px !important;
|
|
|
|
}
|
|
|
|
.dialog_tips .ui-widget-header {
|
|
|
|
margin: 0px !important;
|
|
|
|
}
|
|
|
|
.dialog_tips .tips_header {
|
|
|
|
border-top-right-radius: 10px !important;
|
|
|
|
border-top-left-radius: 10px !important;
|
|
|
|
}
|
|
|
|
#tips_window_modal .ui-dialog-buttonset button {
|
|
|
|
margin: 0px 20px !important;
|
|
|
|
margin-top: 10px !important;
|
|
|
|
}
|
|
|
|
.dialog_tips .ui-dialog-buttonset {
|
|
|
|
border-bottom-right-radius: 10px !important;
|
|
|
|
border-bottom-left-radius: 10px !important;
|
|
|
|
border-top: 1px solid #c1ccdc;
|
|
|
|
}
|
|
|
|
#title_tip {
|
|
|
|
font-size: 15px;
|
|
|
|
color: #161628;
|
|
|
|
}
|
|
|
|
#text_tip {
|
|
|
|
color: #161628;
|
|
|
|
}
|
|
|
|
#url_tip {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #14524f;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
#url_tip .arrow_tips {
|
|
|
|
font-size: 20px;
|
2023-02-13 10:06:14 +01:00
|
|
|
}
|
2023-02-13 16:21:37 +01:00
|
|
|
span.count-round-tip {
|
|
|
|
width: 6px !important;
|
|
|
|
height: 6px !important;
|
|
|
|
background: #dbdfe6;
|
|
|
|
border-radius: 10px;
|
|
|
|
margin: 0px 2px;
|
|
|
|
}
|
|
|
|
span.count-round-tip.active {
|
|
|
|
background-color: #1d7874;
|
|
|
|
}
|
|
|
|
.counter-tips {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.arrow-counter {
|
|
|
|
width: 7px;
|
|
|
|
margin: 0px 5px;
|
|
|
|
}
|
2023-02-15 11:58:34 +01:00
|
|
|
.bx-viewport {
|
|
|
|
height: fit-content !important;
|
|
|
|
}
|
|
|
|
.action_image {
|
|
|
|
margin: 10px 0px;
|
|
|
|
}
|
2023-02-15 13:11:02 +01:00
|
|
|
span.enable {
|
|
|
|
display: block;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
border-radius: 15px;
|
|
|
|
background-color: #82b92e;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
span.disable {
|
|
|
|
display: block;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
border-radius: 15px;
|
|
|
|
background-color: #e63c52;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2023-02-15 15:14:17 +01:00
|
|
|
.buttons_actions {
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
2023-02-15 16:41:14 +01:00
|
|
|
.image-tip {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.image-tip img {
|
|
|
|
max-width: 350px;
|
|
|
|
}
|