@bytenew/bn-bus-ui 1.1.411 → 1.1.412
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common.scss +79 -0
- package/package.json +1 -1
package/common.scss
CHANGED
|
@@ -673,6 +673,85 @@ $border-directions: (
|
|
|
673
673
|
{
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
+
// 班牛旗帜颜色
|
|
677
|
+
.flag-color-gray {
|
|
678
|
+
color: #999999;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.flag-color-red {
|
|
682
|
+
color: #EA3D3D;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.flag-color-yellow {
|
|
686
|
+
color: #FFC60B;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.flag-color-green {
|
|
690
|
+
color: #3ACB36;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.flag-color-blue {
|
|
694
|
+
color: #0664F0;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.flag-color-purple {
|
|
698
|
+
color: #BA2FFF;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.flag-color-orange {
|
|
702
|
+
color: #F48804;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.flag-color-lightBlue {
|
|
706
|
+
color: #41B4FA;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.flag-color-lightPink {
|
|
710
|
+
color: #E5B6B6;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.flag-color-bottleGreen {
|
|
714
|
+
color: #9BA217;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.flag-color-peach {
|
|
718
|
+
color: #E4248E;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
// 青色(抖音的,在班牛没有这个颜色,班牛这边是深绿色)
|
|
722
|
+
.flag-color-cyan {
|
|
723
|
+
color: #9BA217;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
// 固定的不可变的UI统一图标颜色
|
|
727
|
+
.sIcon-worksheet {
|
|
728
|
+
color: #2783F2 !important;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.sIcon-workflow {
|
|
732
|
+
color: #722ed1 !important;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.sIcon-board {
|
|
736
|
+
color: #52C41A !important;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.sIcon-folderOpen {
|
|
740
|
+
color: #FAAD14 !important;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.sIcon-folderClose {
|
|
744
|
+
color: #FAAD14 !important;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.sIcon-cooApp {
|
|
748
|
+
color: #ff4d4f !important;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
/** =============================================
|
|
752
|
+
* 第三部分:Element UI 组件样式覆盖
|
|
753
|
+
* 说明:以下为覆盖 Element UI 组件的默认样式
|
|
754
|
+
* ============================================= */
|
|
676
755
|
//覆盖elementUI相关组件样式,写在最下面
|
|
677
756
|
.el-timeline.is-start {
|
|
678
757
|
padding-left: 0;
|