Add drawers and hairline when scrolling in a modal and organise form SCSS files
This commit is contained in:
parent
a97682b2a4
commit
c5442f709d
|
@ -3,3 +3,4 @@
|
||||||
@import './plugins.scss';
|
@import './plugins.scss';
|
||||||
@import './plugincard.scss';
|
@import './plugincard.scss';
|
||||||
@import './tooltips.scss';
|
@import './tooltips.scss';
|
||||||
|
@import './plugin-settings-modal.scss';
|
||||||
|
|
|
@ -0,0 +1,69 @@
|
||||||
|
.bd-plugin-settings-modal {
|
||||||
|
.bd-modal .bd-modal-body {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-scroller-wrap .bd-scroller {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-plugin-settings-body {
|
||||||
|
margin-bottom: 80px;
|
||||||
|
padding: 0 15px;
|
||||||
|
|
||||||
|
.bd-setting-switch {
|
||||||
|
.bd-switch-wrapper {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
user-select: none;
|
||||||
|
position: relative;
|
||||||
|
width: 40px;
|
||||||
|
height: 20px;
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
input {
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-switch {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
background: #72767d;
|
||||||
|
border-radius: 14px;
|
||||||
|
transition: background .15s ease-in-out,box-shadow .15s ease-in-out,border .15s ease-in-out;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
position: absolute;
|
||||||
|
top: 3px;
|
||||||
|
left: 3px;
|
||||||
|
bottom: 3px;
|
||||||
|
background: #f6f6f7;
|
||||||
|
border-radius: 10px;
|
||||||
|
transition: all .15s ease;
|
||||||
|
box-shadow: 0 3px 1px 0 rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.1), 0 3px 3px 0 rgba(0,0,0,.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.bd-checked {
|
||||||
|
background: $colbdblue;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
transform: translateX(20px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -110,61 +110,3 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bd-plugin-settings-body {
|
|
||||||
margin-bottom: 80px;
|
|
||||||
|
|
||||||
.bd-setting-switch {
|
|
||||||
.bd-switch-wrapper {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
user-select: none;
|
|
||||||
position: relative;
|
|
||||||
width: 40px;
|
|
||||||
height: 20px;
|
|
||||||
display: block;
|
|
||||||
|
|
||||||
input {
|
|
||||||
position: absolute;
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bd-switch {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
background: #72767d;
|
|
||||||
border-radius: 14px;
|
|
||||||
transition: background .15s ease-in-out,box-shadow .15s ease-in-out,border .15s ease-in-out;
|
|
||||||
|
|
||||||
&:before {
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
position: absolute;
|
|
||||||
top: 3px;
|
|
||||||
left: 3px;
|
|
||||||
bottom: 3px;
|
|
||||||
background: #f6f6f7;
|
|
||||||
border-radius: 10px;
|
|
||||||
transition: all .15s ease;
|
|
||||||
box-shadow: 0 3px 1px 0 rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.1), 0 3px 3px 0 rgba(0,0,0,.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.bd-checked {
|
|
||||||
background: $colbdblue;
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
transform: translateX(20px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
.bd-drawer {
|
||||||
|
.bd-drawer-open-button {
|
||||||
|
svg {
|
||||||
|
transition: transform 0.2s ease;
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-drawer-contents {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.bd-drawer-open) {
|
||||||
|
padding-bottom: 5px;
|
||||||
|
border-bottom: 1px solid rgba(114, 118, 126, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.bd-drawer-open {
|
||||||
|
.bd-drawer-open-button {
|
||||||
|
svg {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-drawer-contents {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,3 +1,39 @@
|
||||||
|
.bd-form-header {
|
||||||
|
margin: 15px 0 10px;
|
||||||
|
color: rgba(255, 255, 255, 0.15);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 16px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 600;
|
||||||
|
flex-shrink: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.bd-form-header-text {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bd-form-header-button {
|
||||||
|
flex: 0 0;
|
||||||
|
margin-left: 5px;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
cursor: pointer;
|
||||||
|
fill: #ccc;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.bd-form-item h5 {
|
.bd-form-item h5 {
|
||||||
color: #b9bbbe;
|
color: #b9bbbe;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
@ -14,7 +50,7 @@
|
||||||
.bd-form-textinput + &,
|
.bd-form-textinput + &,
|
||||||
.bd-form-fileinput + &,
|
.bd-form-fileinput + &,
|
||||||
.bd-setting-switch + & {
|
.bd-setting-switch + & {
|
||||||
margin: 0 0 15px 0;
|
margin: 15px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +95,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bd-form-textinput,
|
.bd-form-textinput,
|
||||||
.bd-form-fileinput {
|
.bd-form-fileinput,
|
||||||
|
.bd-setting-switch {
|
||||||
.bd-title {
|
.bd-title {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
@ -79,7 +116,6 @@
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
margin-bottom: 15px;
|
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
border-bottom: 0px solid rgba(114, 118, 126, 0.1);
|
border-bottom: 0px solid rgba(114, 118, 126, 0.1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,3 +5,4 @@
|
||||||
@import './forms.scss';
|
@import './forms.scss';
|
||||||
@import './material-buttons.scss';
|
@import './material-buttons.scss';
|
||||||
@import './modals.scss';
|
@import './modals.scss';
|
||||||
|
@import './drawers.scss';
|
||||||
|
|
|
@ -56,36 +56,50 @@
|
||||||
.bd-modal-header {
|
.bd-modal-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
flex: 0 0;
|
||||||
|
-webkit-transition: -webkit-box-shadow .1s ease-out;
|
||||||
|
transition: -webkit-box-shadow .1s ease-out;
|
||||||
|
transition: box-shadow .1s ease-out;
|
||||||
|
|
||||||
.bd-modal-headertext {
|
.bd-modal-headertext {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin-bottom: 15px;
|
|
||||||
padding-bottom: 15px;
|
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
line-height: 18px;
|
||||||
|
padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bd-modal-x {
|
.bd-modal-x {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border: 1px solid transparent;
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-left: -2px -2px -2px 10px;
|
||||||
|
padding: 2px;
|
||||||
|
|
||||||
.bd-material-design-icon {
|
.bd-material-design-icon {
|
||||||
fill: #FFF;
|
fill: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #2d2f34;
|
background: #2d2f34;
|
||||||
|
|
||||||
|
.bd-material-design-icon {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.bd-modal-scrolled .bd-modal-header {
|
||||||
|
-webkit-box-shadow: 0 1px 0 0 rgba(24,25,28,.3), 0 1px 2px 0 rgba(24,25,28,.3);
|
||||||
|
box-shadow: 0 1px 0 0 rgba(24,25,28,.3), 0 1px 2px 0 rgba(24,25,28,.3);
|
||||||
|
}
|
||||||
|
|
||||||
.bd-modal-body {
|
.bd-modal-body {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,20 +7,6 @@
|
||||||
-webkit-box-align: stretch;
|
-webkit-box-align: stretch;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
.bd-title {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
-webkit-box-direction: normal;
|
|
||||||
-webkit-box-orient: horizontal;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bd-switch-wrapper {
|
.bd-switch-wrapper {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -73,36 +59,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bd-title h3 {
|
.bd-setting-switch-wrap {
|
||||||
font-weight: 500;
|
transition: opacity 0.2s ease;
|
||||||
color: #f6f6f7;
|
|
||||||
flex: 1;
|
|
||||||
line-height: 24px;
|
|
||||||
margin-bottom: 0;
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bd-hint {
|
&.bd-disabled .bd-setting-switch-wrap {
|
||||||
flex: 1 1 auto;
|
opacity: 0.6;
|
||||||
color: #72767d;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
line-height: 30px;
|
|
||||||
border-bottom: 0px solid hsla(218,5%,47%,.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
+ .bd-form-divider {
|
&, input {
|
||||||
margin: 0 0 10px 0;
|
cursor: not-allowed !important;
|
||||||
}
|
|
||||||
|
|
||||||
&.bd-disabled {
|
|
||||||
input {
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bd-switch::before {
|
|
||||||
background: #888888;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="bd-plugin-settings-modal">
|
||||||
<div class="bd-backdrop" @click="attemptToClose"></div>
|
<div class="bd-backdrop" @click="attemptToClose"></div>
|
||||||
<Modal :headerText="plugin.name + ' Settings'" :close="attemptToClose">
|
<Modal :headerText="plugin.name + ' Settings'" :close="attemptToClose">
|
||||||
<div slot="body" class="bd-plugin-settings-body">
|
<div slot="body" class="bd-plugin-settings-body">
|
||||||
|
@ -18,13 +18,14 @@
|
||||||
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="category.type === 'static'">
|
<div v-else-if="category.type === 'static'">
|
||||||
{{category.category}} static with header
|
<div class="bd-form-header">
|
||||||
|
<span class="bd-form-header-text">{{category.category}} static with header</span>
|
||||||
|
</div>
|
||||||
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="category.type === 'drawer'">
|
<Drawer v-else-if="category.type === 'drawer'" :label="category.category + ' drawer'">
|
||||||
{{category.category}} drawer
|
|
||||||
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
||||||
</div>
|
</Drawer>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
<PluginSetting v-for="setting in category.settings" :key="setting.id" :setting="setting" :change="settingChange" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -43,6 +44,7 @@
|
||||||
// Imports
|
// Imports
|
||||||
import { Modal } from '../common';
|
import { Modal } from '../common';
|
||||||
import PluginSetting from './pluginsetting/PluginSetting.vue';
|
import PluginSetting from './pluginsetting/PluginSetting.vue';
|
||||||
|
import Drawer from '../common/Drawer.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: ['plugin','close'],
|
props: ['plugin','close'],
|
||||||
|
@ -55,7 +57,8 @@
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Modal,
|
Modal,
|
||||||
PluginSetting
|
PluginSetting,
|
||||||
|
Drawer
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
checkForChanges() {
|
checkForChanges() {
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
/**
|
||||||
|
* BetterDiscord Drawer Component
|
||||||
|
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
|
||||||
|
* All rights reserved.
|
||||||
|
* https://betterdiscord.net
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div :class="['bd-drawer', {'bd-drawer-open': open}]">
|
||||||
|
<div class="bd-form-header bd-drawer-header">
|
||||||
|
<span class="bd-form-header-text">{{ label }}</span>
|
||||||
|
<span class="bd-form-header-button bd-drawer-open-button" @click="() => open = !open"><MiPlus /></span>
|
||||||
|
</div>
|
||||||
|
<div class="bd-drawer-contents">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import MiPlus from 'vue-material-design-icons/plus.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: [
|
||||||
|
'label'
|
||||||
|
],
|
||||||
|
components: {
|
||||||
|
MiPlus
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
open: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* BetterDiscord ¨Modal Component
|
* BetterDiscord Modal Component
|
||||||
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
|
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
* https://betterdiscord.net
|
* https://betterdiscord.net
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="bd-modal">
|
<div :class="['bd-modal', {'bd-modal-scrolled': scrolled}]">
|
||||||
<div class="bd-modal-inner">
|
<div class="bd-modal-inner">
|
||||||
<div class="bd-modal-header">
|
<div class="bd-modal-header">
|
||||||
<span class="bd-modal-headertext">{{headerText}}</span>
|
<span class="bd-modal-headertext">{{headerText}}</span>
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="bd-modal-body">
|
<div class="bd-modal-body">
|
||||||
<div class="bd-scroller-wrap">
|
<div class="bd-scroller-wrap">
|
||||||
<div class="bd-scroller">
|
<div class="bd-scroller" @scroll="e => scrolled = e.target.scrollTop !== 0">
|
||||||
<slot name="body"></slot>
|
<slot name="body"></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -39,6 +39,11 @@
|
||||||
props: ['headerText', 'close'],
|
props: ['headerText', 'close'],
|
||||||
components: {
|
components: {
|
||||||
MiClose
|
MiClose
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
scrolled: false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -10,14 +10,16 @@
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="bd-setting-switch" :class="{'bd-disabled': disabled}">
|
<div class="bd-setting-switch" :class="{'bd-disabled': disabled}">
|
||||||
<div class="bd-title">
|
<div class="bd-setting-switch-wrap">
|
||||||
<h3>{{setting.title || setting.text}}</h3>
|
<div class="bd-title">
|
||||||
<label class="bd-switch-wrapper" @click="!disabled ? onClick(setting) : null">
|
<h3>{{setting.title || setting.text}}</h3>
|
||||||
<input type="checkbox" class="bd-switch-checkbox" />
|
<label class="bd-switch-wrapper" @click="!disabled ? onClick(setting) : null">
|
||||||
<div class="bd-switch" :class="{'bd-checked': (setting.checked || setting.enabled || setting.value)}" />
|
<input type="checkbox" class="bd-switch-checkbox" />
|
||||||
</label>
|
<div class="bd-switch" :class="{'bd-checked': (setting.checked || setting.enabled || setting.value)}" />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="bd-hint">{{setting.hint}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bd-hint">{{setting.hint}}</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in New Issue