|
|
@@ -2,426 +2,477 @@
|
|
|
------------------------------- */
|
|
|
|
|
|
* {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- box-sizing: border-box;
|
|
|
- outline: none !important;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ outline: none !important;
|
|
|
}
|
|
|
|
|
|
:root {
|
|
|
- --next-color-white: #ffffff;
|
|
|
- --next-bg-main-color: #f8f8f8;
|
|
|
- --next-bg-color: #f5f5ff;
|
|
|
- --next-border-color-light: #f1f2f3;
|
|
|
- --next-color-primary-lighter: #ecf5ff;
|
|
|
- --next-color-success-lighter: #f0f9eb;
|
|
|
- --next-color-warning-lighter: #fdf6ec;
|
|
|
- --next-color-danger-lighter: #fef0f0;
|
|
|
- --next-color-dark-hover: #0000001a;
|
|
|
- --next-color-menu-hover: rgba(0, 0, 0, 0.2);
|
|
|
- --next-color-user-hover: rgba(0, 0, 0, 0.04);
|
|
|
- --next-color-seting-main: #e9eef3;
|
|
|
- --next-color-seting-aside: #d3dce6;
|
|
|
- --next-color-seting-header: #b3c0d1;
|
|
|
+ --next-color-white: #ffffff;
|
|
|
+ --next-bg-main-color: #f8f8f8;
|
|
|
+ --next-bg-color: #f5f5ff;
|
|
|
+ --next-border-color-light: #f1f2f3;
|
|
|
+ --next-color-primary-lighter: #ecf5ff;
|
|
|
+ --next-color-success-lighter: #f0f9eb;
|
|
|
+ --next-color-warning-lighter: #fdf6ec;
|
|
|
+ --next-color-danger-lighter: #fef0f0;
|
|
|
+ --next-color-dark-hover: #0000001a;
|
|
|
+ --next-color-menu-hover: rgba(0, 0, 0, 0.2);
|
|
|
+ --next-color-user-hover: rgba(0, 0, 0, 0.04);
|
|
|
+ --next-color-seting-main: #e9eef3;
|
|
|
+ --next-color-seting-aside: #d3dce6;
|
|
|
+ --next-color-seting-header: #b3c0d1;
|
|
|
}
|
|
|
|
|
|
html,
|
|
|
body,
|
|
|
#app {
|
|
|
- margin: 0;
|
|
|
- padding: 0;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
|
|
|
- font-weight: 400;
|
|
|
- -webkit-font-smoothing: antialiased;
|
|
|
- -webkit-tap-highlight-color: transparent;
|
|
|
- background-color: var(--next-bg-main-color);
|
|
|
- font-size: 14px;
|
|
|
- overflow: hidden;
|
|
|
- position: relative;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
|
|
|
+ font-weight: 400;
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+ -webkit-tap-highlight-color: transparent;
|
|
|
+ background-color: var(--next-bg-main-color);
|
|
|
+ font-size: 14px;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
}
|
|
|
|
|
|
/* 主布局样式
|
|
|
------------------------------- */
|
|
|
.layout-container {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- .layout-pd {
|
|
|
- padding: 15px !important;
|
|
|
- }
|
|
|
- .layout-flex {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- flex: 1;
|
|
|
- }
|
|
|
- .layout-aside {
|
|
|
- background: var(--next-bg-menuBar);
|
|
|
- box-shadow: 2px 0 6px rgb(0 21 41 / 1%);
|
|
|
- height: inherit;
|
|
|
- position: relative;
|
|
|
- z-index: 1;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- overflow-x: hidden !important;
|
|
|
- .el-scrollbar__view {
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
- }
|
|
|
- .layout-header {
|
|
|
- padding: 0 !important;
|
|
|
- height: auto !important;
|
|
|
- }
|
|
|
- .layout-main {
|
|
|
- padding: 0 !important;
|
|
|
- overflow: hidden;
|
|
|
- width: 100%;
|
|
|
- background-color: var(--next-bg-main-color);
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- // 内层 el-scrollbar样式,用于界面高度自适应(main.vue)
|
|
|
- .layout-main-scroll {
|
|
|
- @extend .layout-flex;
|
|
|
- .layout-parent {
|
|
|
- @extend .layout-flex;
|
|
|
- position: relative;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- // 用于界面高度自适应
|
|
|
- .layout-padding {
|
|
|
- @extend .layout-pd;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- height: 100%;
|
|
|
- width: 100%;
|
|
|
- overflow: hidden;
|
|
|
- @extend .layout-flex;
|
|
|
- &-auto {
|
|
|
- height: inherit;
|
|
|
- @extend .layout-flex;
|
|
|
- }
|
|
|
- &-view {
|
|
|
- background: var(--el-color-white);
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- border-radius: 4px;
|
|
|
- border: 1px solid var(--el-border-color-light, #ebeef5);
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
- }
|
|
|
- // 用于界面高度自适应,主视图区 main 的内边距,用于 iframe
|
|
|
- .layout-padding-unset {
|
|
|
- padding: 0 !important;
|
|
|
- &-view {
|
|
|
- border-radius: 0 !important;
|
|
|
- border: none !important;
|
|
|
- }
|
|
|
- }
|
|
|
- // 用于设置 iframe loading 时的高度(loading 垂直居中显示)
|
|
|
- .layout-iframe {
|
|
|
- .el-loading-parent--relative {
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- }
|
|
|
- .el-scrollbar {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
- .layout-el-aside-br-color {
|
|
|
- border-right: 1px solid var(--el-border-color-light, #ebeef5);
|
|
|
- }
|
|
|
- // pc端左侧导航样式
|
|
|
- .layout-aside-pc-220 {
|
|
|
- width: 220px !important;
|
|
|
- transition: width 0.3s ease;
|
|
|
- }
|
|
|
- .layout-aside-pc-64 {
|
|
|
- width: 64px !important;
|
|
|
- transition: width 0.3s ease;
|
|
|
- }
|
|
|
- .layout-aside-pc-1 {
|
|
|
- width: 1px !important;
|
|
|
- transition: width 0.3s ease;
|
|
|
- }
|
|
|
- // 手机端左侧导航样式
|
|
|
- .layout-aside-mobile {
|
|
|
- position: fixed;
|
|
|
- top: 0;
|
|
|
- left: -220px;
|
|
|
- width: 220px;
|
|
|
- z-index: 9999999;
|
|
|
- }
|
|
|
- .layout-aside-mobile-close {
|
|
|
- left: -220px;
|
|
|
- transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
|
|
|
- }
|
|
|
- .layout-aside-mobile-open {
|
|
|
- left: 0;
|
|
|
- transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
|
|
|
- }
|
|
|
- .layout-aside-mobile-mode {
|
|
|
- position: fixed;
|
|
|
- top: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- left: 0;
|
|
|
- height: 100%;
|
|
|
- background-color: rgba(0, 0, 0, 0.5);
|
|
|
- z-index: 9999998;
|
|
|
- animation: error-img 0.3s;
|
|
|
- }
|
|
|
- .layout-mian-height-50 {
|
|
|
- height: calc(100vh - 50px);
|
|
|
- }
|
|
|
- .layout-columns-warp {
|
|
|
- flex: 1;
|
|
|
- display: flex;
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
- .layout-hide {
|
|
|
- display: none;
|
|
|
- }
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+ .layout-pd {
|
|
|
+ padding: 15px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-flex {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside {
|
|
|
+ background: var(--next-bg-menuBar);
|
|
|
+ box-shadow: 2px 0 6px rgb(0 21 41 / 1%);
|
|
|
+ height: inherit;
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ overflow-x: hidden !important;
|
|
|
+
|
|
|
+ .el-scrollbar__view {
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-header {
|
|
|
+ padding: 0 !important;
|
|
|
+ height: auto !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-main {
|
|
|
+ padding: 0 !important;
|
|
|
+ overflow: hidden;
|
|
|
+ width: 100%;
|
|
|
+ background-color: var(--next-bg-main-color);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ // 内层 el-scrollbar样式,用于界面高度自适应(main.vue)
|
|
|
+ .layout-main-scroll {
|
|
|
+ @extend .layout-flex;
|
|
|
+
|
|
|
+ .layout-parent {
|
|
|
+ @extend .layout-flex;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 用于界面高度自适应
|
|
|
+ .layout-padding {
|
|
|
+ @extend .layout-pd;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ @extend .layout-flex;
|
|
|
+
|
|
|
+ &-auto {
|
|
|
+ height: inherit;
|
|
|
+ @extend .layout-flex;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-view {
|
|
|
+ background: var(--el-color-white);
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 4px;
|
|
|
+ border: 1px solid var(--el-border-color-light, #ebeef5);
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 用于界面高度自适应,主视图区 main 的内边距,用于 iframe
|
|
|
+ .layout-padding-unset {
|
|
|
+ padding: 0 !important;
|
|
|
+
|
|
|
+ &-view {
|
|
|
+ border-radius: 0 !important;
|
|
|
+ border: none !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 用于设置 iframe loading 时的高度(loading 垂直居中显示)
|
|
|
+ .layout-iframe {
|
|
|
+ .el-loading-parent--relative {
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-scrollbar {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-el-aside-br-color {
|
|
|
+ border-right: 1px solid var(--el-border-color-light, #ebeef5);
|
|
|
+ }
|
|
|
+
|
|
|
+ // pc端左侧导航样式
|
|
|
+ .layout-aside-pc-220 {
|
|
|
+ width: 220px !important;
|
|
|
+ transition: width 0.3s ease;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside-pc-64 {
|
|
|
+ width: 64px !important;
|
|
|
+ transition: width 0.3s ease;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside-pc-1 {
|
|
|
+ width: 1px !important;
|
|
|
+ transition: width 0.3s ease;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 手机端左侧导航样式
|
|
|
+ .layout-aside-mobile {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: -220px;
|
|
|
+ width: 220px;
|
|
|
+ z-index: 9999999;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside-mobile-close {
|
|
|
+ left: -220px;
|
|
|
+ transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside-mobile-open {
|
|
|
+ left: 0;
|
|
|
+ transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-aside-mobile-mode {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ height: 100%;
|
|
|
+ background-color: rgba(0, 0, 0, 0.5);
|
|
|
+ z-index: 9999998;
|
|
|
+ animation: error-img 0.3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-mian-height-50 {
|
|
|
+ height: calc(100vh - 50px);
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-columns-warp {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ .layout-hide {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/* element plus 全局样式
|
|
|
------------------------------- */
|
|
|
.layout-breadcrumb-seting {
|
|
|
- .el-divider {
|
|
|
- background-color: rgb(230, 230, 230);
|
|
|
- }
|
|
|
+ .el-divider {
|
|
|
+ background-color: rgb(230, 230, 230);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/* nprogress 进度条跟随主题颜色
|
|
|
------------------------------- */
|
|
|
#nprogress {
|
|
|
- .bar {
|
|
|
- background: var(--el-color-primary) !important;
|
|
|
- z-index: 9999999 !important;
|
|
|
- }
|
|
|
+ .bar {
|
|
|
+ background: var(--el-color-primary) !important;
|
|
|
+ z-index: 9999999 !important;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/* flex 弹性布局
|
|
|
------------------------------- */
|
|
|
.flex {
|
|
|
- display: flex;
|
|
|
+ display: flex;
|
|
|
}
|
|
|
+
|
|
|
.flex-auto {
|
|
|
- flex: 1;
|
|
|
- overflow: hidden;
|
|
|
+ flex: 1;
|
|
|
+ overflow: hidden;
|
|
|
}
|
|
|
+
|
|
|
.flex-center {
|
|
|
- @extend .flex;
|
|
|
- flex-direction: column;
|
|
|
- width: 100%;
|
|
|
- overflow: hidden;
|
|
|
+ @extend .flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
}
|
|
|
+
|
|
|
.flex-margin {
|
|
|
- margin: auto;
|
|
|
+ margin: auto;
|
|
|
}
|
|
|
+
|
|
|
.flex-warp {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- align-content: flex-start;
|
|
|
- margin: 0 -5px;
|
|
|
- .flex-warp-item {
|
|
|
- padding: 5px;
|
|
|
- .flex-warp-item-box {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- }
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-content: flex-start;
|
|
|
+ margin: 0 -5px;
|
|
|
+
|
|
|
+ .flex-warp-item {
|
|
|
+ padding: 5px;
|
|
|
+
|
|
|
+ .flex-warp-item-box {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-.flex-justify-center{
|
|
|
- justify-content: center;
|
|
|
+.flex-justify-center {
|
|
|
+ justify-content: center;
|
|
|
}
|
|
|
|
|
|
-.flex-justify-around{
|
|
|
- justify-content: space-around;
|
|
|
+.flex-justify-around {
|
|
|
+ justify-content: space-around;
|
|
|
}
|
|
|
-.flex-justify-between{
|
|
|
- justify-content: space-between;
|
|
|
+
|
|
|
+.flex-justify-between {
|
|
|
+ justify-content: space-between;
|
|
|
}
|
|
|
-.flex-align-items-center{
|
|
|
- align-items: center;
|
|
|
- align-content: center;
|
|
|
+
|
|
|
+.flex-align-items-center {
|
|
|
+ align-items: center;
|
|
|
+ align-content: center;
|
|
|
}
|
|
|
|
|
|
/* cursor 鼠标形状
|
|
|
------------------------------- */
|
|
|
// 默认
|
|
|
.cursor-default {
|
|
|
- cursor: default !important;
|
|
|
+ cursor: default !important;
|
|
|
}
|
|
|
+
|
|
|
// 帮助
|
|
|
.cursor-help {
|
|
|
- cursor: help !important;
|
|
|
+ cursor: help !important;
|
|
|
}
|
|
|
+
|
|
|
// 手指
|
|
|
.cursor-pointer {
|
|
|
- cursor: pointer !important;
|
|
|
+ cursor: pointer !important;
|
|
|
}
|
|
|
+
|
|
|
// 移动
|
|
|
.cursor-move {
|
|
|
- cursor: move !important;
|
|
|
+ cursor: move !important;
|
|
|
}
|
|
|
|
|
|
+// 禁用
|
|
|
+.cursor-disabled {
|
|
|
+ cursor: not-allowed !important;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
/* 宽高 100%
|
|
|
------------------------------- */
|
|
|
.w100 {
|
|
|
- width: 100% !important;
|
|
|
+ width: 100% !important;
|
|
|
}
|
|
|
+
|
|
|
.h100 {
|
|
|
- height: 100% !important;
|
|
|
+ height: 100% !important;
|
|
|
}
|
|
|
+
|
|
|
.vh100 {
|
|
|
- height: 100vh !important;
|
|
|
+ height: 100vh !important;
|
|
|
}
|
|
|
+
|
|
|
.max100vh {
|
|
|
- max-height: 100vh !important;
|
|
|
+ max-height: 100vh !important;
|
|
|
}
|
|
|
+
|
|
|
.min100vh {
|
|
|
- min-height: 100vh !important;
|
|
|
+ min-height: 100vh !important;
|
|
|
}
|
|
|
|
|
|
.wd100 {
|
|
|
- width: 100px !important;
|
|
|
+ width: 100px !important;
|
|
|
}
|
|
|
|
|
|
.wd150 {
|
|
|
- width: 150px !important;
|
|
|
+ width: 150px !important;
|
|
|
}
|
|
|
|
|
|
.wd200 {
|
|
|
- width: 200px !important;
|
|
|
+ width: 200px !important;
|
|
|
}
|
|
|
|
|
|
|
|
|
/* 颜色值
|
|
|
------------------------------- */
|
|
|
.color-primary {
|
|
|
- color: var(--el-color-primary);
|
|
|
+ color: var(--el-color-primary);
|
|
|
}
|
|
|
+
|
|
|
.color-success {
|
|
|
- color: var(--el-color-success);
|
|
|
+ color: var(--el-color-success);
|
|
|
}
|
|
|
+
|
|
|
.color-warning {
|
|
|
- color: var(--el-color-warning);
|
|
|
+ color: var(--el-color-warning);
|
|
|
}
|
|
|
+
|
|
|
.color-danger {
|
|
|
- color: var(--el-color-danger);
|
|
|
+ color: var(--el-color-danger);
|
|
|
}
|
|
|
+
|
|
|
.color-info {
|
|
|
- color: var(--el-color-info);
|
|
|
+ color: var(--el-color-info);
|
|
|
}
|
|
|
|
|
|
//固定宽度
|
|
|
@for $i from 0 through 30 {
|
|
|
- .wd#{$i*5} {
|
|
|
- width: #{$i*5}px !important;
|
|
|
- }
|
|
|
+ .wd#{$i*5} {
|
|
|
+ width: #{$i*5}px !important;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/* 字体大小全局样式
|
|
|
------------------------------- */
|
|
|
@for $i from 10 through 32 {
|
|
|
- .font#{$i} {
|
|
|
- font-size: #{$i}px !important;
|
|
|
- }
|
|
|
+ .font#{$i} {
|
|
|
+ font-size: #{$i}px !important;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/* 外边距、内边距全局样式
|
|
|
------------------------------- */
|
|
|
@for $i from 1 through 35 {
|
|
|
- .mt#{$i} {
|
|
|
- margin-top: #{$i}px !important;
|
|
|
- }
|
|
|
- .mr#{$i} {
|
|
|
- margin-right: #{$i}px !important;
|
|
|
- }
|
|
|
- .mb#{$i} {
|
|
|
- margin-bottom: #{$i}px !important;
|
|
|
- }
|
|
|
- .ml#{$i} {
|
|
|
- margin-left: #{$i}px !important;
|
|
|
- }
|
|
|
- .pt#{$i} {
|
|
|
- padding-top: #{$i}px !important;
|
|
|
- }
|
|
|
- .pr#{$i} {
|
|
|
- padding-right: #{$i}px !important;
|
|
|
- }
|
|
|
- .pb#{$i} {
|
|
|
- padding-bottom: #{$i}px !important;
|
|
|
- }
|
|
|
- .pl#{$i} {
|
|
|
- padding-left: #{$i}px !important;
|
|
|
- }
|
|
|
- .pv#{$i}{
|
|
|
- padding: #{$i}px auto !important;
|
|
|
- }
|
|
|
+ .mt#{$i} {
|
|
|
+ margin-top: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .mr#{$i} {
|
|
|
+ margin-right: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .mb#{$i} {
|
|
|
+ margin-bottom: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .ml#{$i} {
|
|
|
+ margin-left: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .pt#{$i} {
|
|
|
+ padding-top: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .pr#{$i} {
|
|
|
+ padding-right: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .pb#{$i} {
|
|
|
+ padding-bottom: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .pl#{$i} {
|
|
|
+ padding-left: #{$i}px !important;
|
|
|
+ }
|
|
|
+ .pv#{$i} {
|
|
|
+ padding: #{$i}px auto !important;
|
|
|
+ }
|
|
|
|
|
|
- .ph#{$i}{
|
|
|
- padding: auto #{$i}px !important;
|
|
|
- }
|
|
|
+ .ph#{$i} {
|
|
|
+ padding: auto #{$i}px !important;
|
|
|
+ }
|
|
|
|
|
|
- .pd#{$i}{
|
|
|
- padding: #{$i}px !important;
|
|
|
- }
|
|
|
+ .pd#{$i} {
|
|
|
+ padding: #{$i}px !important;
|
|
|
+ }
|
|
|
|
|
|
- .mv#{$i}{
|
|
|
- margin: #{$i}px auto !important;
|
|
|
- }
|
|
|
+ .mv#{$i} {
|
|
|
+ margin: #{$i}px auto !important;
|
|
|
+ }
|
|
|
|
|
|
- .mh#{$i}{
|
|
|
- margin: auto #{$i}px !important;
|
|
|
- }
|
|
|
+ .mh#{$i} {
|
|
|
+ margin: auto #{$i}px !important;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
|
-.hc{
|
|
|
- visibility: hidden !important;
|
|
|
- transition: all 0.5s;
|
|
|
+.hc {
|
|
|
+ visibility: hidden !important;
|
|
|
+ transition: all 0.5s;
|
|
|
}
|
|
|
|
|
|
-.hp{
|
|
|
- &:hover{
|
|
|
- .hc{
|
|
|
- visibility: visible !important;
|
|
|
- }
|
|
|
- }
|
|
|
+.hp {
|
|
|
+ &:hover {
|
|
|
+ .hc {
|
|
|
+ visibility: visible !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-.text-align-left{
|
|
|
- text-align: left;
|
|
|
+.text-align-left {
|
|
|
+ text-align: left;
|
|
|
}
|
|
|
|
|
|
-.text-align-center{
|
|
|
- text-align: center;
|
|
|
+.text-align-center {
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
-.text-align-right{
|
|
|
- text-align: right;
|
|
|
+
|
|
|
+.text-align-right {
|
|
|
+ text-align: right;
|
|
|
}
|
|
|
|
|
|
|
|
|
-.float-right{
|
|
|
- float: right;
|
|
|
+.float-right {
|
|
|
+ float: right;
|
|
|
}
|
|
|
|
|
|
-.float-left{
|
|
|
- float: left;
|
|
|
+.float-left {
|
|
|
+ float: left;
|
|
|
}
|
|
|
|
|
|
-.code{
|
|
|
- width: 100%;
|
|
|
- padding: 5px;
|
|
|
- margin: 5px;
|
|
|
- border-radius: 5px;
|
|
|
- background-color: #f5f7fa;
|
|
|
- color:#000;
|
|
|
+.code {
|
|
|
+ width: 100%;
|
|
|
+ padding: 5px;
|
|
|
+ margin: 5px;
|
|
|
+ border-radius: 5px;
|
|
|
+ background-color: #f5f7fa;
|
|
|
+ color: #000;
|
|
|
}
|
|
|
|
|
|
-.scroll_y{
|
|
|
- overflow-y: scroll;
|
|
|
+.scroll_y {
|
|
|
+ overflow-y: scroll;
|
|
|
}
|