diff --git a/app/patients/edit/template.hbs b/app/patients/edit/template.hbs index 6c51870ac9..ee1d19d710 100644 --- a/app/patients/edit/template.hbs +++ b/app/patients/edit/template.hbs @@ -1,5 +1,5 @@
-
+
-
+
{{#em-form model=this submit_button=false }}
-
+
{{id}}
@@ -68,7 +68,7 @@
-
+
@@ -104,7 +104,7 @@
-
+
Date
@@ -149,7 +149,7 @@
-
+
Date
@@ -198,7 +198,7 @@
-
+
Date Requested
@@ -247,7 +247,7 @@
-
+
Date Requested
@@ -292,7 +292,7 @@
-
+
Start Date
diff --git a/app/styles/_bootstrap.scss b/app/styles/_bootstrap.scss index 553c656ce9..22f79b163b 100644 --- a/app/styles/_bootstrap.scss +++ b/app/styles/_bootstrap.scss @@ -5679,13 +5679,19 @@ a.list-group-item-danger { } .panel-heading { + background-color: $blue_light2; + color: $navy; padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; + border-radius: 3px; + > .dropdown .dropdown-toggle { color: inherit; } + + .btn { + position: relative; + top: -2px; + } } .panel-title { @@ -5796,7 +5802,7 @@ a.list-group-item-danger { .panel-heading { border-bottom: 0; + .panel-collapse .panel-body { - border-top: 1px solid #ddd; + // border-top: 1px solid #ddd; } } .panel-footer { diff --git a/app/styles/_variables_mixins.scss b/app/styles/_variables_mixins.scss index 9310ce90c7..926a0482e4 100644 --- a/app/styles/_variables_mixins.scss +++ b/app/styles/_variables_mixins.scss @@ -9,6 +9,7 @@ $navy_mid2: #3A4D63; $navy_drk: #253649; $navy_text: #97afc8; $blue_light: #dbebff; +$blue_light2: #e9f3ff; $red: #ff6d6f; $red_light: rgba($red,.3); $gray_light: #d9d9d9; diff --git a/app/styles/app.scss b/app/styles/app.scss index 7c01df46f5..ab060c355a 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -211,6 +211,12 @@ body { color: $navy; background-color: white; border: none; + + input, + textarea, + select { + background: rgba($blue_light,.2); + } } .modal-dialog { @@ -240,6 +246,12 @@ h1 { } } +.not-editable { + background-color: rgba($gray_light,.5); + opacity: .5; + cursor: default; +} + // end temp style tweaks ------------/ // Index (dashboard) styles @@ -405,4 +417,24 @@ h1 { } -// end Group ------------/ +// end index styles ------------/ + +// layout styles +// -------------------------------------------/ + +.detail-section-content { + padding: 15px 0; + + .table { margin-top: -15px; } +} + +.table-header { + background-color: transparent; + + > th { + border-top: none !important; + font-weight: 300; + } +} + +// end layout styles ------------/
Date