-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice_2.css
108 lines (95 loc) · 1.84 KB
/
practice_2.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.downloadAttachmentModal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9999;
background: rgba(0, 0, 0, 0.7);
display: none;
transition: display 300ms ease-in;
}
.downloadAttachment__wrapper {
position: fixed;
top: 50%;
left: 50%;
width: 50%;
min-width: 280px;
height: auto;
background: #fff;
transform: translateX(-50%) translateY(-50%);
}
.downloadAttachment__title {
padding: 20px 30px;
margin: 0;
text-align: center;
color: #ff7573;
border-bottom: 2px solid #ff7573;
font-size: 1.1em;
}
.downloadAttachment_form {
background: #f7f9fa;
}
.downloadAttachment__content {
max-height: 60vh;
overflow: auto;
padding: 15px 15px 0 15px;
}
.downloadAttachment__estimate {
padding: 0px 15px 15px 15px;
}
.downloadAttachment__footer {
padding: 15px;
border-top: #e3e7e8 solid 1px;
}
.downloadAttachment__actions {
margin: 20px;
text-align: center;
}
.downloadAttachment__actions .kintoneplugin-button-dialog-cancel {
margin-right: 16px;
}
.cmnBtn.on {
color: #ff7573 !important;
background-color: #fff;
border: 1px solid #ff7573;
}
.downloadAttachment__close {
margin-top: -10px;
margin-right: 10px;
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.downloadAttachment__close:hover,
.downloadAttachment__close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.downloadAttachment__field {
width: 180px;
padding-right: 10px;
}
.downloadContent__field {
margin-top: 10px;
}
.downloadAttachment__fieldsContainer {
display: flex;
overflow: auto;
}
.downloadAttachment__expander {
margin-right: 1em;
}
.downloadAttachment__expander:before {
content: ">";
position: absolute;
transition: all 0.5s;
}
.downloadAttachment__expander.down:before {
transform: rotate(90deg);
}
.downloadAttachment__button {
margin-top: 12px
}