0.0.2 form poster
This commit is contained in:
@@ -2,7 +2,13 @@
|
||||
position: relative;
|
||||
--header-padding: 10px 20px;
|
||||
--select-border: #E6E6E6;
|
||||
--select-border-radius: 10px;
|
||||
--select-border-radius: 10px 10px 0 0;
|
||||
--select-height: 48px;
|
||||
|
||||
&.closed{
|
||||
--select-border-radius: 10px;
|
||||
.w_select_country_content{display: none}
|
||||
}
|
||||
|
||||
.w_select_country_header{
|
||||
display: flex;
|
||||
@@ -12,6 +18,7 @@
|
||||
border: 1px solid var(--select-border);
|
||||
border-radius: var(--select-border-radius);
|
||||
padding: 10px;
|
||||
background: #FFFFFF;
|
||||
|
||||
.select_country_header_left_part{
|
||||
display: flex;
|
||||
@@ -22,7 +29,7 @@
|
||||
.container_inf_about_country{
|
||||
display: none;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
gap: 0;
|
||||
&:has(img[src]){
|
||||
display: flex;
|
||||
}
|
||||
@@ -51,9 +58,58 @@
|
||||
}
|
||||
.w_select_country_content{
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
top: var(--select-height);
|
||||
width: 100%;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid var(--select-border);
|
||||
border-top: none;
|
||||
border-radius: 0 0 10px 10px;
|
||||
box-sizing: border-box;
|
||||
max-height: 200px;
|
||||
overflow: auto;
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background-color: #CCCED1FF;
|
||||
border-radius: 5px;
|
||||
width: 6px;
|
||||
display: block;
|
||||
border: 1px solid #EDEDEDFF;
|
||||
transition: 200ms all;
|
||||
}
|
||||
&::-webkit-scrollbar {
|
||||
background-color: #EDEDEDFF;
|
||||
width: 8px;
|
||||
display: block;
|
||||
padding-left: 15px;
|
||||
transition: 500ms all;
|
||||
opacity: 100%;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
&.closed{
|
||||
.w_select_country_content{display: none}
|
||||
.cw_w_select_widget_for_select{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
|
||||
.cw_country_inf_part{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
img{
|
||||
height: 12px;
|
||||
width: 24px;
|
||||
object-fit: contain;
|
||||
}
|
||||
div{
|
||||
color: #272424;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
.cw_name_country{
|
||||
font-size: 16px;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user