1
1
* {
2
2
padding : 0 ;
3
3
margin : 0 ;
4
+ box-sizing : border-box;
4
5
}
5
6
6
7
* ::-webkit-scrollbar {
17
18
}
18
19
19
20
body {
20
- width : 300 px ;
21
+ width : 330 px ;
21
22
background-color : # eceff7 ;
22
23
}
23
24
24
25
input {
25
- border : 1px solid rgb ( 210 , 210 , 210 ) ;
26
+ border : 1px solid # cacaca ;
26
27
}
27
28
28
29
input : focus-visible {
@@ -33,37 +34,76 @@ input:focus-visible {
33
34
padding : 5px 10px 10px ;
34
35
}
35
36
37
+ .partition {
38
+ margin : 12px 0 ;
39
+ height : 1px ;
40
+ background-color : # cecece ;
41
+ }
42
+
36
43
.title {
37
44
text-align : center;
38
45
}
39
46
47
+ /* config */
48
+
40
49
.config {
41
- margin-top : 10px ;
42
- padding-bottom : 10px ;
43
- border-bottom : 1px solid # cecece ;
50
+ padding : 0 2px ;
44
51
}
45
52
46
- .config .item {
53
+ /* config writes */
54
+
55
+ .config .writes .item {
47
56
display : flex;
48
57
justify-content : space-between;
49
- padding : 3px 10px ;
58
+ align-items : center;
59
+ height : 26px ;
60
+ padding : 3px 0 ;
50
61
}
51
62
52
- .config .item span {
53
- width : 60px ;
63
+ .config .writes .item span {
64
+ width : 55px ;
65
+ text-align : justify;
66
+ text-align-last : justify;
54
67
}
55
68
56
- .config .item .config-ipt {
69
+ .config .writes . item .config-input {
57
70
flex : 1 ;
71
+ height : 100% ;
72
+ margin-left : 5px ;
73
+ padding-left : 5px ;
58
74
border-radius : 5px ;
59
75
}
60
76
77
+ /* config options */
78
+
79
+ .config .options {
80
+ display : flex;
81
+ flex-direction : column;
82
+ margin-top : 5px ;
83
+ }
84
+
85
+ .config .options .options-label {
86
+ display : flex;
87
+ align-items : center;
88
+ height : 20px ;
89
+ }
90
+
91
+ .config .options .options-label .config-checkbox {
92
+ margin-right : 8px ;
93
+ }
94
+
95
+ /* box */
96
+
97
+ .box {
98
+ min-height : 300px ;
99
+ }
100
+
61
101
.box .search {
62
102
display : flex;
63
- justify-content : center ;
103
+ justify-content : space-around ;
64
104
align-items : center;
65
105
margin-top : 10px ;
66
- border : 1px solid rgb ( 210 , 210 , 210 ) ;
106
+ border : 1px solid # cacaca ;
67
107
border-radius : 10px ;
68
108
background-color : # ffff ;
69
109
}
@@ -84,25 +124,27 @@ input:focus-visible {
84
124
border : none;
85
125
border-radius : 5px ;
86
126
color : # ffff ;
87
- background-color : # c5c5c5 ;
127
+ background-color : # 000 ;
128
+
88
129
}
89
130
90
- .box .search .search-btn : hover {
91
- background-color : # bbbbbb ;
131
+ .box .search .search-btn [ disabled ] {
132
+ background-color : # c5c5c5 ;
92
133
}
93
134
94
135
/* message list */
95
136
96
137
.box .message-list {
97
138
margin-top : 10px ;
98
- max-height : 390 px ;
139
+ max-height : 350 px ;
99
140
overflow-y : scroll;
100
141
word-wrap : break-word;
101
142
}
102
143
103
144
.box .message-list .item {
104
145
margin : 12px 0 ;
105
146
padding : 6px ;
147
+ min-height : 30px ;
106
148
border-radius : 6px ;
107
149
background-color : # ffff ;
108
150
}
0 commit comments