|
2 | 2 | background-color: rgb(243, 244, 250); |
3 | 3 | } |
4 | 4 |
|
| 5 | +/* EULA Banner Styles */ |
| 6 | +.eula-banner { |
| 7 | + background-color: #fff3cd; |
| 8 | + border: 1px solid #ffeaa7; |
| 9 | + color: #856404; |
| 10 | + padding: 0; |
| 11 | + position: relative; |
| 12 | + z-index: 1000; |
| 13 | + box-shadow: 0 2px 4px rgba(0,0,0,0.1); |
| 14 | +} |
| 15 | + |
| 16 | +/* Hide banner when modal dialogs are open */ |
| 17 | +.md-dialog-is-showing .eula-banner { |
| 18 | + display: none !important; |
| 19 | +} |
| 20 | + |
| 21 | +.eula-banner-content { |
| 22 | + display: flex; |
| 23 | + align-items: center; |
| 24 | + justify-content: space-between; |
| 25 | + padding: 12px 16px; |
| 26 | + max-width: 100%; |
| 27 | +} |
| 28 | + |
| 29 | +.eula-banner-text { |
| 30 | + flex: 1; |
| 31 | + font-size: 14px; |
| 32 | + line-height: 1.4; |
| 33 | +} |
| 34 | + |
| 35 | +.eula-banner-button { |
| 36 | + background-color: #856404; |
| 37 | + border: none; |
| 38 | + border-radius: 4px; |
| 39 | + color: white; |
| 40 | + cursor: pointer; |
| 41 | + font-size: 12px; |
| 42 | + font-weight: 500; |
| 43 | + margin-left: 8px; |
| 44 | + padding: 4px 12px; |
| 45 | + transition: background-color 0.2s ease; |
| 46 | + vertical-align: baseline; |
| 47 | +} |
| 48 | + |
| 49 | +.eula-banner-button:hover { |
| 50 | + background-color: #533f03; |
| 51 | +} |
| 52 | + |
| 53 | +.eula-banner-button:focus { |
| 54 | + outline: 2px solid #856404; |
| 55 | + outline-offset: 2px; |
| 56 | +} |
| 57 | + |
| 58 | +.eula-banner-close { |
| 59 | + background: none; |
| 60 | + border: none; |
| 61 | + color: #856404; |
| 62 | + cursor: pointer; |
| 63 | + font-size: 20px; |
| 64 | + font-weight: bold; |
| 65 | + line-height: 1; |
| 66 | + margin-left: 16px; |
| 67 | + padding: 0; |
| 68 | + width: 24px; |
| 69 | + height: 24px; |
| 70 | + display: flex; |
| 71 | + align-items: center; |
| 72 | + justify-content: center; |
| 73 | + border-radius: 4px; |
| 74 | + transition: background-color 0.2s ease, color 0.2s ease; |
| 75 | +} |
| 76 | + |
| 77 | +.eula-banner-close:hover:not(:disabled) { |
| 78 | + background-color: rgba(133, 100, 4, 0.1); |
| 79 | +} |
| 80 | + |
| 81 | +.eula-banner-close:focus:not(:disabled) { |
| 82 | + outline: 2px solid #856404; |
| 83 | + outline-offset: 2px; |
| 84 | +} |
| 85 | + |
| 86 | +.eula-banner-close-disabled, |
| 87 | +.eula-banner-close:disabled { |
| 88 | + color: #bbb !important; |
| 89 | + cursor: not-allowed !important; |
| 90 | + opacity: 0.5; |
| 91 | +} |
| 92 | + |
| 93 | +.eula-banner-close-disabled:hover, |
| 94 | +.eula-banner-close:disabled:hover { |
| 95 | + background-color: transparent !important; |
| 96 | +} |
| 97 | + |
5 | 98 | md-content.blankslate { |
6 | 99 | background-color: rgb(243, 244, 250); |
7 | 100 | padding-top: 50px; |
|
0 commit comments