Merge pull request #7492 from sjpadgett/weno_updates
[openemr.git] / interface / themes / core / patient / past_encounters.scss
blob605aabdc36ebeee8cd980dcfd6a611510df5b8d1
1 /*=============================================================
2  * Patient Past Encounters and Documents
3  * seen in the patient encounter screen
4  *============================================================*/
5 @if $compact-theme == false {
6   #patient_pastenc {
7     width: 100%;
9     .billing_note {
10       width: 25%;
11     }
13     .billing_note_text {
14       background-color: $gray;
15       border: 2px outset $black;
16       padding: 5px;
17     }
19     .billing_note_text_highlight {
20       background-color: lighten($yellow, 70%);
21     }
23     table {
24       border-collapse: collapse;
25       width: 100%;
26     }
28     tr {
29       cursor: pointer;
30     }
32     td {
33       border-top: 1px solid $black;
34       vertical-align: top;
35     }
37     th {
38       text-align: $left;
39     }
41     #tooltipdiv {
42       background-color: lighten($yellow, 60%);
43       border: 1px solid $black;
44       padding: 2px;
45       position: absolute;
46       visibility: hidden;
47       width: 500px;
48       z-index: 1000;
49     }
51     .highlight {
52       background-color: $white;
53     }
55     .tooltip {
56       background: lighten($yellow, 70%);
57       border: 1px solid $dark;
58       color: $dark;
59       display: none;
60       padding: 2px 5px;
61       position: absolute;
62     }
63   }