Spaces:
Running
Running
Guilherme Silberfarb Costa commited on
Commit ·
5c5c634
1
Parent(s): a14bed6
Refine active section highlight
Browse files- frontend/src/styles.css +20 -4
frontend/src/styles.css
CHANGED
|
@@ -1793,7 +1793,18 @@ textarea {
|
|
| 1793 |
inset 0 0 0 1px #dfe9f3;
|
| 1794 |
animation: sectionIn 0.35s ease both;
|
| 1795 |
animation-delay: calc(var(--section-order, 1) * 25ms);
|
| 1796 |
-
transition: border-color 0.18s ease, box-shadow 0.18s ease;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1797 |
}
|
| 1798 |
|
| 1799 |
.elaboracao-layout[data-current-section-step="1"] .workflow-section[data-section-step="1"],
|
|
@@ -1815,10 +1826,15 @@ textarea {
|
|
| 1815 |
.elaboracao-layout[data-current-section-step="17"] .workflow-section[data-section-step="17"],
|
| 1816 |
.elaboracao-layout[data-current-section-step="18"] .workflow-section[data-section-step="18"],
|
| 1817 |
.elaboracao-layout[data-current-section-step="19"] .workflow-section[data-section-step="19"] {
|
| 1818 |
-
|
|
|
|
|
|
|
|
|
|
| 1819 |
box-shadow:
|
| 1820 |
-
0
|
| 1821 |
-
|
|
|
|
|
|
|
| 1822 |
}
|
| 1823 |
|
| 1824 |
.section-head {
|
|
|
|
| 1793 |
inset 0 0 0 1px #dfe9f3;
|
| 1794 |
animation: sectionIn 0.35s ease both;
|
| 1795 |
animation-delay: calc(var(--section-order, 1) * 25ms);
|
| 1796 |
+
transition: border-color 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
|
| 1797 |
+
}
|
| 1798 |
+
|
| 1799 |
+
.elaboracao-layout[data-current-section-step] .workflow-section {
|
| 1800 |
+
opacity: 0.84;
|
| 1801 |
+
filter: saturate(0.9) brightness(0.97);
|
| 1802 |
+
}
|
| 1803 |
+
|
| 1804 |
+
.elaboracao-layout[data-current-section-step] .workflow-section:hover,
|
| 1805 |
+
.elaboracao-layout[data-current-section-step] .workflow-section:focus-within {
|
| 1806 |
+
opacity: 0.94;
|
| 1807 |
+
filter: saturate(0.96) brightness(0.99);
|
| 1808 |
}
|
| 1809 |
|
| 1810 |
.elaboracao-layout[data-current-section-step="1"] .workflow-section[data-section-step="1"],
|
|
|
|
| 1826 |
.elaboracao-layout[data-current-section-step="17"] .workflow-section[data-section-step="17"],
|
| 1827 |
.elaboracao-layout[data-current-section-step="18"] .workflow-section[data-section-step="18"],
|
| 1828 |
.elaboracao-layout[data-current-section-step="19"] .workflow-section[data-section-step="19"] {
|
| 1829 |
+
opacity: 1;
|
| 1830 |
+
filter: none;
|
| 1831 |
+
transform: translateY(-1px);
|
| 1832 |
+
border-color: #d58a32;
|
| 1833 |
box-shadow:
|
| 1834 |
+
0 16px 34px rgba(155, 87, 13, 0.14),
|
| 1835 |
+
0 3px 10px rgba(155, 87, 13, 0.08),
|
| 1836 |
+
inset 0 3px 0 #d06f00,
|
| 1837 |
+
inset 0 0 0 1px #f4d0a5;
|
| 1838 |
}
|
| 1839 |
|
| 1840 |
.section-head {
|