123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /**
- * 创建者:王成
- * 创建日期:2022年7月2日
- * 描述:空间分析结果样式集 所有样式均以jt开头
- */
- /* 分析结果分组标签样式 */
- .jt-spatial-analysis-group-label {
- position: relative;
- font-size: 13px;
- color: rgb(203, 203, 203);
- background-color: rgb(44, 64, 134);
- padding-left: 24px !important;
- height: 40px !important;
- line-height: 40px !important;
- font-weight: bold;
- }
- /* 分析结果分组标签前置div小方块样式 */
- .jt-spatial-analysis-group-label:before {
- position: absolute;
- content: '';
- width: 4px;
- height: calc(40px - 16px);
- background-color: rgb(64, 97, 173);
- left: 12px;
- top: 8px;
- }
- /* 分析结果行样式 */
- .jt-spatial-analysis-content-row {
- position: relative;
- height: 34px;
- line-height: 34px;
- color: rgb(255, 255, 255);
- font-size: 13px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0px 5px;
- }
- /* 分析结果行底边框线样式 */
- .jt-spatial-analysis-content-row::after {
- content: '';
- width: 100%;
- position: absolute;
- left: 20px;
- bottom: 0px;
- border-bottom: solid 1px rgba(203, 203, 203, 0.75);
- z-index: 20,
- }
- /* 干掉最有一条底部边框线 */
- .jt-spatial-analysis-content-row-last::after {
- border-bottom: solid 0px red;
- }
- /* 分析结果编号样式 */
- .jt-spatial-analysis-content-row>span:nth-child(1) {
- display: inline-block;
- height: 20px;
- width: 20px;
- line-height: 20px;
- font-size: 11px;
- border: solid 1px rgb(230, 230, 230);
- border-radius: 20px;
- color: rgb(146, 224, 212);
- font-weight: bold;
- background-color: rgba(255, 255, 255, 0);
- text-align: center;
- box-shadow: rgb(95, 150, 222) 0px 0px 10px inset;
- margin-left: 10px;
- }
- /* 分析结果面积值样式 */
- .jt-spatial-analysis-content-row>span:nth-child(2) {
- display: inline-block;
- width: 100px;
- text-align: right;
- padding-right: 10px;
- color: rgb(147, 224, 212);
- font-weight: bold;
- }
- /* 分析结果标题样式 */
- .jt-spatial-analysis-content-row>span:nth-child(3) {
- display: inline-block;
- width: 100px;
- text-align: left;
- padding-right: 10px;
- flex: 1;
- font-family: 'TTTGB-Medium', sans-serif !important;
- }
|