|
|
@@ -0,0 +1,193 @@
|
|
|
+/*
|
|
|
+*这里的值严格按照UI设计图标注值来进行设置
|
|
|
+*/
|
|
|
+/*
|
|
|
+*颜色
|
|
|
+*/
|
|
|
+/*
|
|
|
+*页面的边距
|
|
|
+*/
|
|
|
+/*
|
|
|
+*字体
|
|
|
+*/
|
|
|
+/*
|
|
|
+*头像
|
|
|
+*/
|
|
|
+/*
|
|
|
+ * 按钮
|
|
|
+ */
|
|
|
+/*
|
|
|
+*对常见的多行样式进行了方法封装,方便调用,加快开发效率
|
|
|
+*/
|
|
|
+html,
|
|
|
+body {
|
|
|
+ min-height: 100vh;
|
|
|
+ background-color: #eee;
|
|
|
+ margin: 0;
|
|
|
+ font-weight: initial !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+ color: #333 !important;
|
|
|
+}
|
|
|
+html *,
|
|
|
+body * {
|
|
|
+ text-decoration: none !important;
|
|
|
+ font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.ms-ellipsis {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+.ms-align-center {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+input::-webkit-input-placeholder,
|
|
|
+textarea::-webkit-input-placeholder {
|
|
|
+ font-weight: initial;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999;
|
|
|
+ resize: none;
|
|
|
+}
|
|
|
+*::-webkit-scrollbar {
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+}
|
|
|
+/*定义滚动条轨道 内阴影+圆角*/
|
|
|
+*::-webkit-scrollbar-track {
|
|
|
+ border-radius: 10px;
|
|
|
+ /*滚动条的背景区域的圆角*/
|
|
|
+ background-color: #eee;
|
|
|
+ /*滚动条的背景颜色*/
|
|
|
+}
|
|
|
+/*定义滑块 内阴影+圆角*/
|
|
|
+*::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 10px;
|
|
|
+ /*滚动条的圆角*/
|
|
|
+ background-color: #ddd;
|
|
|
+ /*滚动条的背景颜色*/
|
|
|
+}
|
|
|
+.ms-container {
|
|
|
+ margin: 12px;
|
|
|
+ height: 100%;
|
|
|
+ padding: 14px 14px 0 14px;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+.ms-header {
|
|
|
+ padding: 10px;
|
|
|
+ margin: 0;
|
|
|
+ border-bottom: 1px solid #ddd;
|
|
|
+ background: #fff;
|
|
|
+ height: 50px;
|
|
|
+}
|
|
|
+.ms-pagination {
|
|
|
+ padding: 20px 0;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.ms-fr {
|
|
|
+ float: right;
|
|
|
+}
|
|
|
+.ms-tr {
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.el-button + .el-button {
|
|
|
+ margin-left: 0;
|
|
|
+}
|
|
|
+.ms-custom-menu {
|
|
|
+ color: #f2f2f6;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container {
|
|
|
+ margin: 10px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside {
|
|
|
+ background: #fff;
|
|
|
+ width: 280px !important;
|
|
|
+ height: 470px !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-header {
|
|
|
+ height: 40px !important;
|
|
|
+ line-height: 40px !important;
|
|
|
+ font-weight: initial;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ background: #323232;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-main {
|
|
|
+ padding: 0;
|
|
|
+ width: 280px !important;
|
|
|
+ height: 379px !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer {
|
|
|
+ white-space: nowrap;
|
|
|
+ padding: 0;
|
|
|
+ font-size: 0;
|
|
|
+ background-color: #FAFAFA;
|
|
|
+ width: 280px !important;
|
|
|
+ height: 50px !important;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+ border-top: 1px solid #ddd !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer > .el-button {
|
|
|
+ width: 40px !important;
|
|
|
+ height: 50px !important;
|
|
|
+ padding: 0 !important;
|
|
|
+ border: none !important;
|
|
|
+ border-right: 1px solid #ddd !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .el-button {
|
|
|
+ border-radius: 0 !important;
|
|
|
+ height: 50px !important;
|
|
|
+ background: transparent !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu {
|
|
|
+ flex: 1;
|
|
|
+ font-size: 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-button,
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-dropdown {
|
|
|
+ flex: 1;
|
|
|
+ border: none !important;
|
|
|
+ background: transparent !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-button span,
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-dropdown span {
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-dropdown {
|
|
|
+ flex: .5;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-dropdown > .el-button {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-aside .el-container .el-footer .ms-create-menu .el-button--default {
|
|
|
+ border-left: 1px solid #ddd !important;
|
|
|
+ padding: 0 !important;
|
|
|
+ flex: .5;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-main {
|
|
|
+ padding: 0 20px;
|
|
|
+ flex: 1;
|
|
|
+ height: 470px;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-main .custom-menu-card .ms-custom-menu-name .el-form-item__content {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-main .custom-menu-card .ms-custom-menu-name .el-form-item__content .el-input {
|
|
|
+ width: 153px !important;
|
|
|
+ height: 30px !important;
|
|
|
+}
|
|
|
+.ms-custom-menu .ms-custom-container .el-main .custom-menu-card .ms-custom-menu-name .el-form-item__content span {
|
|
|
+ margin-left: 10px;
|
|
|
+ font-weight: initial;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999;
|
|
|
+}
|