| 1 |
.notistack-SnackbarContainer { |
| 2 |
margin-top: 30px; |
| 3 |
} |
| 4 |
|
| 5 |
#mfe_perf_cards .rl-mfe-performance-cards { |
| 6 |
padding-left: 0 !important; |
| 7 |
padding-right: 0 !important; |
| 8 |
} |
| 9 |
|
| 10 |
.rl-mfe-default-rule input[type=checkbox] { |
| 11 |
height: 100% !important; |
| 12 |
border: none !important; |
| 13 |
} |
| 14 |
|
| 15 |
.rl-mfe-default-rule .MuiOutlinedInput-input, |
| 16 |
.rl-mfe-default-rule .MuiInputBase-inputAdornedStart { |
| 17 |
border: none !important; |
| 18 |
box-shadow: none !important; |
| 19 |
} |
| 20 |
|
| 21 |
.rl-mfe-default-rule.MuiTypography-body2, |
| 22 |
.rl-mfe-default-rule.MuiTypography-caption { |
| 23 |
color: rgb(108, 117, 125); |
| 24 |
} |
| 25 |
|
| 26 |
.rl-mfe-btn { |
| 27 |
appearance: none; |
| 28 |
border: none; |
| 29 |
border-radius: 8px; /* mirip shadcn (rounded-xl) */ |
| 30 |
padding: 0.75rem 1.25rem; |
| 31 |
background-color: #0076CE; /* biru solid */ |
| 32 |
color: #ffffff; |
| 33 |
font-weight: 600; |
| 34 |
font-size: 0.95rem; |
| 35 |
line-height: 1; |
| 36 |
cursor: pointer; |
| 37 |
text-decoration: none !important; |
| 38 |
|
| 39 |
display: inline-flex; |
| 40 |
align-items: center; |
| 41 |
justify-content: center; |
| 42 |
|
| 43 |
transition: |
| 44 |
background-color 0.15s ease, |
| 45 |
box-shadow 0.15s ease, |
| 46 |
transform 0.05s ease; |
| 47 |
} |
| 48 |
|
| 49 |
/* hover dikit aja */ |
| 50 |
.rl-mfe-btn:hover { |
| 51 |
background-color: #00416A; |
| 52 |
color: white !important; |
| 53 |
} |
| 54 |
|
| 55 |
/* active (pas ditekan) */ |
| 56 |
.rl-mfe-btn:active { |
| 57 |
transform: translateY(1px); |
| 58 |
} |
| 59 |
|
| 60 |
/* 🔥 shadcn-style focus ring */ |
| 61 |
.rl-mfe-btn:focus-visible { |
| 62 |
outline: none; |
| 63 |
box-shadow: |
| 64 |
0 0 0 2px #ffffff, /* inner gap */ |
| 65 |
0 0 0 4px rgba(10,108,255,.6); /* ring biru */ |
| 66 |
} |
| 67 |
|
| 68 |
/* disabled versi sopan */ |
| 69 |
.rl-mfe-btn:disabled { |
| 70 |
opacity: 0.6; |
| 71 |
cursor: not-allowed; |
| 72 |
} |
| 73 |
|
| 74 |
.rl-mfe-btn--soft { |
| 75 |
appearance: none; |
| 76 |
border: none; |
| 77 |
border-radius: 8px; |
| 78 |
padding: 0.75rem 1.25rem; |
| 79 |
|
| 80 |
background-color: transparent; |
| 81 |
color: #00416A; /* same text tone */ |
| 82 |
|
| 83 |
font-weight: 600; |
| 84 |
font-size: 0.95rem; |
| 85 |
line-height: 1; |
| 86 |
cursor: pointer; |
| 87 |
text-decoration: none !important; |
| 88 |
|
| 89 |
display: inline-flex; |
| 90 |
align-items: center; |
| 91 |
justify-content: center; |
| 92 |
|
| 93 |
transition: |
| 94 |
background-color 0.15s ease, |
| 95 |
box-shadow 0.15s ease, |
| 96 |
transform 0.05s ease; |
| 97 |
} |
| 98 |
|
| 99 |
.rl-mfe-btn--soft:hover { |
| 100 |
background-color: rgba(0, 0, 0, 0.06); /* shadcn-like neutral hover */ |
| 101 |
color: #00416A; |
| 102 |
} |
| 103 |
|
| 104 |
.rl-mfe-btn--soft:active { |
| 105 |
transform: translateY(1px); |
| 106 |
background-color: rgba(0, 0, 0, 0.1); |
| 107 |
} |
| 108 |
|
| 109 |
.rl-mfe-btn--soft:focus-visible { |
| 110 |
outline: none; |
| 111 |
box-shadow: |
| 112 |
0 0 0 2px #ffffff, |
| 113 |
0 0 0 4px rgba(0, 118, 206, 0.35); |
| 114 |
} |
| 115 |
|
| 116 |
.rl-mfe-btn--soft:disabled { |
| 117 |
opacity: 0.5; |
| 118 |
cursor: not-allowed; |
| 119 |
} |
| 120 |
|
| 121 |
.rl-mfe-card { |
| 122 |
border-radius: 8px; |
| 123 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); |
| 124 |
padding: 1.5rem; |
| 125 |
background: white; |
| 126 |
} |
| 127 |
|
| 128 |
.rl-mfe-rounded { |
| 129 |
border-radius: 8px; |
| 130 |
} |