bug fix (#7559)
[openemr.git] / interface / themes / core / therapy-groups.scss
blob3c227ca051363e3ebb515e6e5478b507508e981d
1 /* ------- Therapy groups styling --------- */
2 @if $compact-theme == false {
3   .group-row {
4     margin-top: 15px;
5   }
7   .container-group {
8     margin-top: auto;
9   }
11   .group-error-msg {
12     color: $orange;
13   }
15   .group-success-msg {
16     color: $success;
17   }
19   #component-border {
20     border: 1px solid $primary;
21     margin-bottom: 20px;
22     min-height: 150px;
23     padding: 10px;
24     width: 100%;
25   }
27   table.dataTable#therapy_groups_list tbody td {
28     font-size: 15px;
29     padding-left: 20px;
30     padding-right: 20px;
31   }
33   .therapy_group #therapy_groups_list_container {
34     margin-top: initial;
35     width: initial;
36   }
38   .therapy_group #therapy_groups_list_container input[type="text"] {
39     border-color: $gray-400;
40   }
42   .therapy_group #therapy_groups_list_container input[type=number] {
43     appearance: textfield;
44   }
46   .therapy_group #therapy_groups_list_container input[type=number]::-webkit-inner-spin-button,
47   .therapy_group #therapy_groups_list_container input[type=number]::-webkit-outer-spin-button {
48     appearance: none;
49     margin: 0;
50   }
52   .therapy_group .delete_btn button,
53   .therapy_group .delete_btn span {
54     @include font-size("0.9375rem");
55     background-color: lighten($danger, 20%);
56     padding: 2px 10px;
57   }
59   .therapy_group .delete_btn a {
60     color: $white;
61     text-decoration: none;
62   }
64   .therapy_group #therapy_groups_list_container .failed_message {
65     @include font-size("0.9375rem");
66   }
68   #updateParticipants {
69     position: relative;
70   }
72   #addParticipant {
73     position: absolute;
74     z-index: 100;
75     #{$right}: 0;
76   }
78   #add-participant-form {
79     max-height: 0;
80     overflow: hidden;
81     transition: max-height 1s ease-out;
82   }
84   .showAddForm {
85     max-height: 250px !important;
86   }
88   .groups-error-msg {
89     @include font-size("1.3rem");
90     color: $orange;
91     padding: 8px;
92     text-align: center;
93   }
95   .therapy_group .event_details {
96     @include font-size("1rem");
97   }
99   #add_participant {
100     margin-bottom: 20px;
101     margin-#{$left}: 10px;
102   }
104   #add_participant .patient_wrap,
105   #add_participant .comment_wrap,
106   #add_participant .button_wrap {
107     margin-top: 7px;
108   }
110   #add_participant .patient_wrap,
111   #add_participant .comment_wrap {
112     display: inline-block;
113   }
115   #add_participant .button_wrap input {
116     display: inline-block;
117     float: none;
118   }
120   #add_participant_element .input_label {
121     display: block;
122   }
124   #add_participant_element .error_wrap .error {
125     color: $danger;
126   }
128   #group_attendance_form_table tbody td {
129     text-align: center;
130   }
132   #file_type_whitelist .subject-black-list,
133   #file_type_whitelist .subject-white-list {
134     display: inline-block;
135     float: $left;
136     width: 420px;
137   }
139   #file_type_whitelist {
140     height: 400px;
141     padding: 10px;
142   }
144   #white-list,
145   #black-list {
146     margin: 10px;
147     padding: 10px;
148     width: 400px;
149   }
151   #file_type_whitelist select {
152     height: 250px;
153     padding: 0;
154   }
156   #file_type_whitelist option {
157     padding: 4px 10px;
158   }
160   #file_type_whitelist option:hover {
161     background: lighten($gray-200, 10%);
162   }
164   #file_type_whitelist .subject-info-arrows {
165     display: inline-block;
166     float: $left;
167     margin: 130px 30px 30px;
168     width: 58px;
169   }
171   #file_type_whitelist .subject-info-save {
172     float: $left;
173     margin: 170px 30px 30px;
174     width: 60px;
175   }
177   #file_type_whitelist input[type=button] {
178     float: none !important;
179     width: 63px;
180   }
182   #file_type_whitelist #add-manually {
183     display: inline-block;
184   }
186   #file_type_whitelist #add-manually-input {
187     width: 190px;
188   }
190   #file_type_whitelist .top-list {
191     margin: 20px 20px 2px;
192   }
194   #new-encounter-group-title {
195     float: $left;
196   }
198   #new-encounter-group-buttons {
199     float: $left;
200     margin-top: -3px;
201     margin-#{$left}: 8px;
202   }
205 @include if-rtl {
206   @if $compact-theme == false {
207     #white-list,
208     #black-list {
209       direction: ltr;
210     }
212     #therapy_groups_list_container #clear_filters {
213       float: right;
214     }
215   }