Use :deep instead of global css

old-stable24
Varun Patil 2022-10-26 21:26:28 -07:00
parent 524c029134
commit 95438af1d8
4 changed files with 28 additions and 37 deletions

View File

@ -6,7 +6,7 @@
}" }"
:to="target"> :to="target">
<div class="big-icon fill-block"> <div class="big-icon fill-block">
<FolderIcon class="memories__big-folder-icon" /> <FolderIcon class="icon" />
<div class="name">{{ data.name }}</div> <div class="name">{{ data.name }}</div>
</div> </div>
@ -110,13 +110,6 @@ export default class Folder extends Mixins(GlobalMixin, UserConfig) {
} }
</script> </script>
<style lang="scss">
/* This cannot be scoped for some reason */
.memories__big-folder-icon > .material-design-icon__svg {
width: 50%; height: 50%;
}
</style>
<style lang="scss" scoped> <style lang="scss" scoped>
.folder { .folder {
cursor: pointer; cursor: pointer;
@ -129,6 +122,10 @@ export default class Folder extends Mixins(GlobalMixin, UserConfig) {
top: 0; left: 0; top: 0; left: 0;
transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out;
:deep .material-design-icon__svg {
width: 50%; height: 50%;
}
> .name { > .name {
cursor: pointer; cursor: pointer;
width: 100%; width: 100%;

View File

@ -19,7 +19,7 @@
</span> </span>
{{ longDateStr }} {{ longDateStr }}
<div class="fields memories__editdate__fields"> <div class="fields">
<NcTextField :value.sync="year" <NcTextField :value.sync="year"
class="field" class="field"
@input="newestChange()" @input="newestChange()"
@ -53,7 +53,7 @@
</span> </span>
{{ longDateStrLast }} {{ longDateStrLast }}
<div class="fields memories__editdate__fields"> <div class="fields">
<NcTextField :value.sync="yearLast" <NcTextField :value.sync="yearLast"
class="field" class="field"
:label="t('memories', 'Year')" :label-visible="true" :label="t('memories', 'Year')" :label-visible="true"
@ -400,6 +400,12 @@ export default class EditDate extends Mixins(GlobalMixin) {
width: 4.1em; width: 4.1em;
display: inline-block; display: inline-block;
} }
:deep label {
font-size: 0.8em;
padding: 0 !important;
padding-left: 3px !important;
}
} }
.oldest { .oldest {
@ -417,11 +423,3 @@ export default class EditDate extends Mixins(GlobalMixin) {
} }
} }
</style> </style>
<style lang="scss">
.memories__editdate__fields label {
font-size: 0.8em;
padding: 0 !important;
padding-left: 3px !important;
}
</style>

View File

@ -10,7 +10,7 @@
<slot></slot> <slot></slot>
<div class="memories__modal__buttons"> <div class="buttons">
<slot name="buttons"></slot> <slot name="buttons"></slot>
</div> </div>
</div> </div>
@ -41,16 +41,14 @@ export default class Modal extends Vue {
.head { .head {
font-weight: 500; font-weight: 500;
} }
}
</style>
<style lang="scss"> :deep .buttons {
.memories__modal__buttons { margin-top: 10px;
margin-top: 10px; text-align: right;
text-align: right;
> button { > button {
display: inline-block !important; display: inline-block !important;
}
} }
} }
</style> </style>

View File

@ -11,7 +11,7 @@
</div> </div>
</div> </div>
<div class="left-btn dir-btn memories__onthisday__btn" v-if="hasLeft"> <div class="left-btn dir-btn" v-if="hasLeft">
<NcActions> <NcActions>
<NcActionButton <NcActionButton
:aria-label="t('memories', 'Move left')" :aria-label="t('memories', 'Move left')"
@ -21,7 +21,7 @@
</NcActionButton> </NcActionButton>
</NcActions> </NcActions>
</div> </div>
<div class="right-btn dir-btn memories__onthisday__btn" v-if="hasRight"> <div class="right-btn dir-btn" v-if="hasRight">
<NcActions> <NcActions>
<NcActionButton <NcActionButton
:aria-label="t('memories', 'Move right')" :aria-label="t('memories', 'Move right')"
@ -211,6 +211,12 @@ $mobHeight: 150px;
border-radius: 10px; border-radius: 10px;
} }
:deep .dir-btn button {
transform: scale(0.6);
box-shadow: var(--color-main-text) 0 0 3px 0 !important;
background-color: var(--color-main-background) !important;
}
.left-btn { .left-btn {
position: absolute; position: absolute;
top: 50%; left: 0; top: 50%; left: 0;
@ -280,12 +286,4 @@ $mobHeight: 150px;
.overlay { font-size: 1.1em; } .overlay { font-size: 1.1em; }
} }
} }
</style>
<style lang="scss">
.memories__onthisday__btn button {
transform: scale(0.6);
box-shadow: var(--color-main-text) 0 0 3px 0 !important;
background-color: var(--color-main-background) !important;
}
</style> </style>