summaryrefslogtreecommitdiff
path: root/SI/.obsidian/plugins/obsidian-icon-folder/styles.css
blob: 77bc2b5f694e8689d08aae1d6489940ffdaac039 (plain)
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
109
110
111
112
113
114
115
.iconize-title-icon {
  max-width: var(--max-width);
  width: var(--line-width);
  margin-inline: var(--content-margin) !important;
}

.iconize-icon-in-link {
  margin-right: var(--size-2-2);
  display: inline-flex;
  transform: translateY(13%);
}

.iconize-icon {
  border: 1px solid transparent;
  margin: 0px 4px 0px 0px;
  display: flex;
  align-self: center;
  margin: auto 0;
}

.nav-folder-title,
.nav-file-title {
  align-items: center;
}

.iconize-setting input[type='color'] {
  margin: 0 6px;
}

.iconize-modal.prompt-results {
  margin: 0;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.prompt .iconize-subheadline {
  margin-top: 12px;
  font-size: 12px;
  color: gray;
  grid-column-start: 1;
  grid-column-end: 6;
}

@media (max-width: 640px) {
  .iconize-modal.prompt-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .prompt .iconize-subheadline {
    grid-column-end: 4;
  }
}

.iconize-modal.prompt-results .suggestion-item {
  cursor: pointer;
  white-space: pre-wrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column-reverse;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 8px;
  line-break: auto;
  word-break: break-word;
  line-height: 1.3;
}

.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
  justify-content: center;
}

.iconize-icon-preview {
  font-size: 22px;
}

.iconize-icon-preview img {
  width: 16px;
  height: 16px;
}

.iconize-icon-preview svg {
  width: 24px;
  height: 24px;
  color: currentColor;
  margin-bottom: 4px;
}

.iconize-dragover {
  position: relative;
}

.iconize-dragover-el {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--text-normal);
  background-color: var(--background-secondary-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom rule modal. */
.iconize-custom-modal .modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconize-custom-modal .modal-content input {
  width: 100%;
  margin-right: 0.5rem;
}