@movvjs/svelte-schedule-view 0.4.19 → 0.4.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -711,6 +711,11 @@
|
|
|
711
711
|
background-color: white;
|
|
712
712
|
}
|
|
713
713
|
|
|
714
|
+
&.error{
|
|
715
|
+
background-color: #f8e7e7;
|
|
716
|
+
border : 1px solid #db5a5a;
|
|
717
|
+
}
|
|
718
|
+
|
|
714
719
|
&.xs{
|
|
715
720
|
height: 24px;
|
|
716
721
|
font-size: 12px;
|
|
@@ -3651,6 +3656,25 @@
|
|
|
3651
3656
|
height: 40px;
|
|
3652
3657
|
}
|
|
3653
3658
|
|
|
3659
|
+
.scroll_box{
|
|
3660
|
+
max-height: 95px;
|
|
3661
|
+
overflow-y: auto;
|
|
3662
|
+
&::-webkit-scrollbar {
|
|
3663
|
+
-webkit-appearance: none;
|
|
3664
|
+
width: 6px;
|
|
3665
|
+
}
|
|
3666
|
+
&::-webkit-scrollbar-thumb {
|
|
3667
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
3668
|
+
border-radius: 10px;
|
|
3669
|
+
}
|
|
3670
|
+
> p{
|
|
3671
|
+
font-size: 12px;
|
|
3672
|
+
font-weight: 500;
|
|
3673
|
+
padding: 5px 0;
|
|
3674
|
+
line-height: 1.0;
|
|
3675
|
+
}
|
|
3676
|
+
}
|
|
3677
|
+
|
|
3654
3678
|
.value-txt{
|
|
3655
3679
|
font-size: 12px;
|
|
3656
3680
|
font-weight: 500;
|
|
@@ -5079,5 +5103,45 @@
|
|
|
5079
5103
|
}
|
|
5080
5104
|
}
|
|
5081
5105
|
|
|
5106
|
+
// 이메일 다중등록
|
|
5107
|
+
.add_email_wrap{
|
|
5108
|
+
display: flex;
|
|
5109
|
+
flex-direction: column;
|
|
5110
|
+
position: relative;
|
|
5111
|
+
.add_email_list{
|
|
5112
|
+
display:flex;
|
|
5113
|
+
flex-direction: column;
|
|
5114
|
+
gap:5px;
|
|
5115
|
+
.item{
|
|
5116
|
+
position: relative;
|
|
5117
|
+
> input{
|
|
5118
|
+
padding-right:34px;
|
|
5119
|
+
}
|
|
5120
|
+
> button{
|
|
5121
|
+
position: absolute;
|
|
5122
|
+
top:6px;
|
|
5123
|
+
right:10px;
|
|
5124
|
+
text-indent: -9999px;
|
|
5125
|
+
width: 18px;
|
|
5126
|
+
height: 18px;
|
|
5127
|
+
border-radius: 50%;
|
|
5128
|
+
background-size: 16px;
|
|
5129
|
+
background-repeat: no-repeat;
|
|
5130
|
+
background-position: center center;
|
|
5131
|
+
&.button_add{
|
|
5132
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23FFFFFF'%3E%3Cpath d='M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z'/%3E%3C/svg%3E");
|
|
5133
|
+
background-color: #323341;
|
|
5134
|
+
}
|
|
5135
|
+
&.button_minus{
|
|
5136
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23FFFFFF'%3E%3Cpath d='M200-440v-80h560v80H200Z'/%3E%3C/svg%3E");
|
|
5137
|
+
background-color: #ff6565;
|
|
5138
|
+
}
|
|
5139
|
+
}
|
|
5140
|
+
}
|
|
5141
|
+
}
|
|
5142
|
+
}
|
|
5143
|
+
|
|
5082
5144
|
}
|
|
5083
5145
|
|
|
5146
|
+
|
|
5147
|
+
|