123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /**
- * 创建者:王成
- * 创建日期:2022年9月20日
- * 描述:占压分析统计结果展示样式
- */
- /* 母容器样式 */
- .jt-csa-count-result-panel {
- position: relative;
- display: flex;
- flex-direction: column;
- height: 100%;
- }
- /* 顶部横向滚动条样式 */
- .mui-segmented-control.mui-scroll-wrapper {
- margin: 5px !important;
- width: calc(100% - 10px);
- height: 30px;
- }
- /* 顶部横向滚动条样式内部滚动 */
- .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
- height: 100%;
- }
- /* 如果顶部的选择项只有一个 则直接占满宽度 */
- .mui-segmented-control.mui-scroll-wrapper .mui-scroll .jt-control-item {
- width: calc(100vw) !important;
- }
- /* 选择器样式 */
- .mui-segmented-control.mui-scroll-wrapper .mui-scroll .mui-control-item {
- color: rgb(217, 145, 45) !important;
- box-shadow: inset 0px 15px 15px -15px rgb(95, 150, 222),
- inset 0px -15px 15px -15px rgb(95, 150, 222);
- border: solid 0px rgb(255, 0, 0);
- height: 100%;
- line-height: 100%;
- font-size: 14px;
- padding: 8px 15px;
- }
- /* 选择器选中状态样式 */
- .mui-segmented-control.mui-scroll-wrapper .mui-scroll .mui-control-item.mui-active {
- color: rgb(255, 255, 255) !important;
- background-color: rgb(49, 72, 157) !important;
- box-shadow: inset 0px 15px 15px -15px rgb(95, 150, 222),
- inset 0px -15px 15px -15px rgb(95, 150, 222);
- border: solid 0px rgb(255, 0, 0) !important;
- }
- /* 主体内容样式 */
- .mui-content-padded {
- margin: 5px;
- margin-top: 0px;
- flex: 1;
- }
- /* 主体内容子容器样式 */
- .mui-content-padded .mui-control-content {
- border: 1px solid rgba(255, 255, 255, 0.45);
- height: 100%;
- color: rgb(255, 255, 255);
- }
- /* 子容器内容样式 */
- .mui-control-content .jt-row-content {
- height: calc(100% - 30px);
- position: relative;
- }
- /* 内容样式 去掉容器边框 */
- .jt-mui-control-content {
- border: 0px solid rgba(255, 255, 255, 0) !important;
- }
- /* 数据内容占据全部高度 */
- .jt-mui-control-content .jt-row-content {
- height: 100%;
- }
- /* 内容滚动容器样式 */
- .mui-control-content .jt-row-content .mui-scroll-wrapper {
- position: relative;
- height: 100%;
- /* background-color: rgb(67, 96, 200); */
- }
- /* 标题行及数据行样式 */
- .mui-control-content .jt-row-head,
- .mui-control-content .jt-row-content .jt-row {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 30px;
- }
- /* 标题行独有样式 */
- .mui-control-content .jt-row-head {
- background-color: rgb(44, 64, 134);
- font-size: 14px;
- font-weight: bold;
- border-bottom: 1px solid rgba(255, 255, 255, 0.45);
- }
- /* 标题行及容器行子内容样式 */
- .mui-control-content .jt-row-head>span,
- .mui-control-content .jt-row-content .jt-row>span {
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /* 标题行及数据行第一列样式 */
- .mui-control-content .jt-row-head>span:nth-child(1),
- .mui-control-content .jt-row-content .jt-row>span:nth-child(1) {
- border-right: 1px solid rgba(255, 255, 255, 0.45);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /* 标题行及数据行第二列样式 */
- .mui-control-content .jt-row-head>span:nth-child(2),
- .mui-control-content .jt-row-content .jt-row>span:nth-child(2) {
- width: 45%;
- }
- /* 标题行及数据行内容样式 */
- .mui-control-content .jt-row-head>span,
- .mui-control-content .jt-row-content .jt-row>span {
- display: inline-block;
- padding: 4px 5px;
- width: calc(55% - 1px);
- text-align: center;
- }
- /* 标题行及数据行内容样式点击样式 */
- .mui-control-content .jt-row-head>span:active,
- .mui-control-content .jt-row-content .jt-row>span:active {
- color: rgb(255, 255, 0);
- font-weight: bold;
- font-size: 14px;
- }
- /* 数据行独有样式 */
- .mui-control-content .jt-row-content .jt-row {
- font-size: 13px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.45);
- }
- .mui-popover-bottom .mui-bar {
- padding-right: 40px;
- }
- /* 弹框顶部增加关闭按钮 */
- .mui-popover-bottom .mui-bar::after {
- font-family: 'iconfont', sans-serif !important;
- position: absolute;
- content: '\e614';
- height: 44px;
- line-height: 44px;
- width: 20px;
- right: 15px;
- padding: 0px;
- z-index: 10;
- color: rgb(255, 255, 255);
- font-weight: bold;
- font-size: 18px;
- }
- /* 弹框顶部关闭按钮点击样式 */
- .mui-popover-bottom .mui-bar:active::after {
- color: rgb(255, 255, 0);
- }
- /* 案件容器顶部选择项容器样式 */
- .jt-segmented-control-item {
- padding-top: 0px !important;
- padding-bottom: 0px !important;
- }
- /* 案件容器顶部选择项内容容器样式 */
- .jt-segmented-control-item .jt-segmented-control-item-content {
- display: flex !important;
- flex-direction: row;
- align-items: center;
- height: 100%;
- width: calc(100% - 10px);
- }
- /* 案件容器顶部选择器数字样式 */
- .jt-segmented-control-item .jt-segmented-control-item-content .jt-number {
- color: rgb(255, 255, 0);
- flex: 1;
- text-align: left;
- padding: 0px 5px;
- }
- /* 案件容器顶部选择器加载更多按钮样式 */
- .jt-segmented-control-item .jt-segmented-control-item-content .jt-cnt-bar-button {
- height: 24px;
- background-color: rgba(255, 255, 255, 0);
- padding: 0px 10px;
- border: solid 1px rgba(236, 182, 98, 0.8);
- color: rgb(255, 255, 255);
- font-size: 13px !important;
- font-weight: bold;
- margin: 0px;
- }
|