|
|
@@ -190,6 +190,78 @@
|
|
|
--el-message-border-radius: var(--radius-base);
|
|
|
}
|
|
|
|
|
|
+// Live Stream 创建提示对话框
|
|
|
+.live-stream-dialog {
|
|
|
+ width: 420px !important;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ border-radius: 0;
|
|
|
+
|
|
|
+ .el-message-box__header {
|
|
|
+ padding: 30px 20px 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-message-box__title {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #303133;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-message-box__status {
|
|
|
+ font-size: 48px !important;
|
|
|
+ margin-bottom: 15px;
|
|
|
+
|
|
|
+ &.el-message-box-icon--warning {
|
|
|
+ color: #faad14;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-message-box__content {
|
|
|
+ padding: 10px 20px 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-message-box__message {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #606266;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-message-box__btns {
|
|
|
+ padding: 10px 20px 20px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ gap: 12px;
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ min-width: 120px;
|
|
|
+ padding: 10px 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ border-radius: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button--default {
|
|
|
+ border-color: #dcdfe6;
|
|
|
+ color: #606266;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ border-color: #c0c4cc;
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button--primary {
|
|
|
+ background-color: #409eff;
|
|
|
+ border-color: #409eff;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-color: #66b1ff;
|
|
|
+ border-color: #66b1ff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
// 标签
|
|
|
.el-tag {
|
|
|
--el-tag-border-radius: var(--radius-sm);
|