diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-04 21:19:12 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-04 21:19:12 +0900 |
| commit | cb41391bae5ea49edcf632c45ee736e4c867aa07 (patch) | |
| tree | cd913bdec8ce4fde559b7d5161b7e2b8d9768ca3 /src/client | |
| parent | wip (diff) | |
| download | sharkey-cb41391bae5ea49edcf632c45ee736e4c867aa07.tar.gz sharkey-cb41391bae5ea49edcf632c45ee736e4c867aa07.tar.bz2 sharkey-cb41391bae5ea49edcf632c45ee736e4c867aa07.zip | |
wip
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/components/date-separated-list.vue | 2 | ||||
| -rw-r--r-- | src/client/style.scss | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 5eb005ef68..6d42429166 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -1,5 +1,5 @@ <template> -<component :is="$store.state.device.animation ? 'transition-group' : 'div'" class="sqadhkmv" name="list" tag="div" :data-direction="direction" :data-reversed="reversed ? 'true' : 'false'"> +<component :is="$store.state.device.animation ? 'transition-group' : 'div'" class="sqadhkmv _list_" name="list" tag="div" :data-direction="direction" :data-reversed="reversed ? 'true' : 'false'"> <template v-for="(item, i) in items"> <slot :item="item"></slot> <div class="separator" v-if="showDate(i, item)" :key="item.id + '_date'"> diff --git a/src/client/style.scss b/src/client/style.scss index aa7a5b12e1..12374f7126 100644 --- a/src/client/style.scss +++ b/src/client/style.scss @@ -279,11 +279,12 @@ hr { position: relative; background: var(--panel); border-radius: var(--radius); +} - ._panel { - box-shadow: 0 1px 0 0 var(--divider), 0 -1px 0 0 var(--divider); - border-radius: none; - } +._widget ._list_ ._panel { + box-shadow: 0 1px 0 0 var(--divider), 0 -1px 0 0 var(--divider); + border-radius: 0; + margin: 0 !important; } .__panelButton { |