Skip to content

Commit 26913b5

Browse files
Merge pull request #3197 from OneCommunityGlobal/Ziddi-bmdashboard-issue-log-form
Ziddi - issue log form in bmdashboard
2 parents c2ba0a4 + ca0e3e7 commit 26913b5

5 files changed

Lines changed: 503 additions & 0 deletions

File tree

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
.issue-form-container {
2+
margin: 0 auto;
3+
max-width: 625px;
4+
}
5+
6+
.red-text {
7+
color: #980101;
8+
display: flex;
9+
justify-content: center;
10+
}
11+
12+
.red-asterisk {
13+
color: #e00000;
14+
}
15+
16+
.issue-title-text {
17+
text-align: center;
18+
padding-top: 3.5vh;
19+
padding-bottom: 3.5vh;
20+
font-weight: bold;
21+
font-size: 20px;
22+
}
23+
24+
.consequences-text {
25+
text-align: left;
26+
}
27+
28+
.sub-title-text {
29+
display: flex;
30+
flex-direction: row;
31+
color: #2e5061;
32+
font-weight: bold;
33+
}
34+
35+
.character-counter-text {
36+
position: absolute;
37+
bottom: 0;
38+
right: 1.2em;
39+
font-size: 12px;
40+
color: #999;
41+
}
42+
43+
.position-relative {
44+
position: relative;
45+
}
46+
47+
.issue-form-override-css {
48+
max-width: inherit !important;
49+
}
50+
51+
.issue-radio-buttons {
52+
display: flex;
53+
justify-content: left;
54+
margin-top: auto;
55+
padding-left: 3em;
56+
padding-right: 27em;
57+
}
58+
59+
.consequences-checkboxes {
60+
padding: 0 2.5em 0;
61+
}
62+
63+
.consequences-checkboxes > .col {
64+
width: 100%;
65+
flex-grow: 1;
66+
}
67+
68+
.issue-date {
69+
align-items: center;
70+
padding: 0 3em;
71+
}
72+
73+
input.issue-date-input {
74+
width: 160px;
75+
}
76+
77+
button.IssueFormButtonCancel {
78+
font-size: 20px;
79+
height: 50px;
80+
width: 50%;
81+
background-color: #ffffff !important;
82+
color: #2e5061 !important;
83+
border-color: #2e5061 !important;
84+
}
85+
86+
.row-margin-bottom {
87+
margin-bottom: 1em;
88+
}
89+
90+
button.IssueFormButtonSubmit {
91+
height: 50px;
92+
width: 50%;
93+
background-color: #2e5061 !important;
94+
color: #ffffff !important;
95+
border-color: #2e5061 !important;
96+
font-size: 20px;
97+
}

0 commit comments

Comments
 (0)