generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (56 loc) · 1.13 KB
/
styles.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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* 搜索框样式 */
.modal-close-button{
display:none;
}
.hidden-search-button{
display:none;
}
/* 标签管理器对话框样式 */
.tag-list-container{
background-color: var(--color-base-20);
border-radius: 10px;
padding:10px;
height: 300px;
overflow:scroll;
}
.new-tag{
padding-top:20px;
padding-bottom:20px;
display:flex;
justify-content: space-between;
}
.tag-input{
margin-right:10px;
width:82%;
flex:0 1 auto;
}
.tag-footer{
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: center;
}
.tag-button-container{
display: flex;
justify-content: space-between;
width: 20%;
}
.progress-container{
background-color:var(--color-base-50);
border-radius: 3px;
width: 90%;
height:6px;
margin-right:10px;
}
.progress{
background-color: var(--interactive-accent);
border-radius: 3px;
height:6px;
margin-right:10px;
transition:1s;
}