Skip to content

Commit 506c724

Browse files
authored
Create CSS
1 parent e2a520d commit 506c724

File tree

1 file changed

+52
-0
lines changed
  • Modern Development/Service Portal Widgets/Change Calendar Report

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
.report-widget-wrap {
2+
background:#fff;
3+
padding:15px;
4+
margin: 0 0 15px 0;
5+
}
6+
7+
.report-widget-title {
8+
padding: $sp-space--xl;
9+
font-weight:bold;
10+
margin-top: 0;
11+
margin-bottom: 0;
12+
font-family: $now-sp-font-family-sans-serif;
13+
color: $text-color;
14+
font-size: $font-size-h4;
15+
16+
}
17+
18+
.highcharts-container g.highcharts-button *,
19+
.highcharts-container image.hc-image {
20+
transition: fill-opacity 0.3s linear, stroke-opacity 0.3s linear, opacity 0.3s linear;
21+
fill-opacity: 0;
22+
stroke-opacity: 0;
23+
opacity:0;
24+
}
25+
26+
.highcharts-container:hover g.highcharts-button *,
27+
.highcharts-container:hover image.hc-image {
28+
fill-opacity: 1;
29+
stroke-opacity: 1;
30+
opacity:1;
31+
}
32+
33+
.highcharts-legend-item span::after,
34+
.highcharts-legend-item::after {
35+
content: "\200E";
36+
}
37+
38+
table.wide .pivot_cell,
39+
table.wide .pivot_caption,
40+
table.wide .pivot_caption_dark {
41+
padding: 3px 5px;
42+
}
43+
.highlight-wrap {
44+
display: none;
45+
}
46+
47+
.fc-week-number {
48+
width: 42px;
49+
background-color: #ededed;
50+
}
51+
52+

0 commit comments

Comments
 (0)