This commit is contained in:
syuilo
2018-09-28 14:26:20 +09:00
parent 1eef90f6cb
commit c627288bde
20 changed files with 65 additions and 117 deletions

View File

@ -100,9 +100,7 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
.header
background var(--face)
box-shadow var(--shadow)
border-radius var(--round)
@ -182,12 +180,12 @@ root(isDark)
> .body
padding 16px 16px 16px 154px
color isDark ? #c5ced6 : #555
color var(--text)
> .status
margin-top 16px
padding-top 16px
border-top solid 1px rgba(#000, isDark ? 0.2 : 0.1)
border-top solid 1px var(--faceDivider)
font-size 80%
> *
@ -196,13 +194,13 @@ root(isDark)
margin-right 16px
&:not(:last-child)
border-right solid 1px rgba(#000, isDark ? 0.2 : 0.1)
border-right solid 1px var(--faceDivider)
&.clickable
cursor pointer
&:hover
color isDark ? #fff : #000
color var(--faceTextButtonHover)
> b
margin-right 4px
@ -210,10 +208,4 @@ root(isDark)
font-weight bold
color var(--primary)
.header[data-darkmode]
root(true)
.header:not([data-darkmode])
root(false)
</style>