@cccarv82/freya 2.15.0 → 2.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli/web-ui.css CHANGED
@@ -1682,6 +1682,11 @@ textarea:focus {
1682
1682
  background: var(--chip);
1683
1683
  }
1684
1684
 
1685
+ /* Compact kanban on dashboard (not standalone /kanban page) */
1686
+ body:not([data-page="kanban"]) .kanban-col-body {
1687
+ max-height: 400px;
1688
+ }
1689
+
1685
1690
  .kanban-card {
1686
1691
  background: var(--paper);
1687
1692
  border: 1px solid var(--line2);
@@ -1901,6 +1906,48 @@ textarea:focus {
1901
1906
  align-items: center;
1902
1907
  }
1903
1908
 
1909
+ .qa-date-wrap {
1910
+ position: relative;
1911
+ width: 160px;
1912
+ display: flex;
1913
+ align-items: center;
1914
+ }
1915
+ .qa-date-text {
1916
+ padding-right: 32px !important;
1917
+ }
1918
+ .qa-date-hidden {
1919
+ position: absolute;
1920
+ top: 0;
1921
+ left: 0;
1922
+ width: 1px;
1923
+ height: 1px;
1924
+ opacity: 0;
1925
+ pointer-events: none;
1926
+ overflow: hidden;
1927
+ clip: rect(0,0,0,0);
1928
+ border: 0;
1929
+ padding: 0;
1930
+ margin: -1px;
1931
+ }
1932
+ .qa-date-btn {
1933
+ position: absolute;
1934
+ right: 4px;
1935
+ top: 50%;
1936
+ transform: translateY(-50%);
1937
+ background: none;
1938
+ border: none;
1939
+ cursor: pointer;
1940
+ font-size: 16px;
1941
+ padding: 2px 4px;
1942
+ line-height: 1;
1943
+ color: var(--muted);
1944
+ opacity: 0.8;
1945
+ transition: opacity 0.15s;
1946
+ }
1947
+ .qa-date-btn:hover {
1948
+ opacity: 1;
1949
+ }
1950
+
1904
1951
  /* ── Delta Banner ── */
1905
1952
  .delta-banner {
1906
1953
  display: flex;
@@ -1913,4 +1960,110 @@ textarea:focus {
1913
1960
  font-size: 12px;
1914
1961
  color: var(--text);
1915
1962
  border-left: 3px solid var(--primary);
1916
- }
1963
+ }
1964
+
1965
+ /* ── Detail Panel (click-to-view on kanban cards) ── */
1966
+ .detail-panel-overlay {
1967
+ position: fixed;
1968
+ inset: 0;
1969
+ background: rgba(0,0,0,0.55);
1970
+ display: flex;
1971
+ align-items: center;
1972
+ justify-content: center;
1973
+ z-index: 10000;
1974
+ animation: fadeIn 0.15s ease;
1975
+ }
1976
+ .detail-panel {
1977
+ background: var(--paper);
1978
+ border: 1px solid var(--line2);
1979
+ border-radius: 12px;
1980
+ width: 520px;
1981
+ max-width: 95vw;
1982
+ max-height: 85vh;
1983
+ overflow-y: auto;
1984
+ padding: 20px 24px;
1985
+ box-shadow: 0 12px 40px rgba(0,0,0,0.4);
1986
+ }
1987
+ .detail-panel-header {
1988
+ display: flex;
1989
+ align-items: flex-start;
1990
+ justify-content: space-between;
1991
+ gap: 12px;
1992
+ margin-bottom: 16px;
1993
+ padding-bottom: 12px;
1994
+ border-bottom: 1px solid var(--border);
1995
+ }
1996
+ .detail-panel-title {
1997
+ font-size: 16px;
1998
+ font-weight: 700;
1999
+ color: var(--text);
2000
+ word-break: break-word;
2001
+ }
2002
+ .detail-panel-close {
2003
+ background: none;
2004
+ border: none;
2005
+ color: var(--muted);
2006
+ font-size: 22px;
2007
+ cursor: pointer;
2008
+ padding: 0 4px;
2009
+ line-height: 1;
2010
+ flex-shrink: 0;
2011
+ }
2012
+ .detail-panel-close:hover {
2013
+ color: var(--text);
2014
+ }
2015
+ .detail-panel-grid {
2016
+ display: grid;
2017
+ grid-template-columns: 120px 1fr;
2018
+ gap: 6px 12px;
2019
+ margin-bottom: 12px;
2020
+ }
2021
+ .detail-row-label {
2022
+ font-size: 11px;
2023
+ font-weight: 700;
2024
+ text-transform: uppercase;
2025
+ letter-spacing: 0.5px;
2026
+ color: var(--muted);
2027
+ padding: 3px 0;
2028
+ }
2029
+ .detail-row-value {
2030
+ font-size: 13px;
2031
+ color: var(--text);
2032
+ padding: 3px 0;
2033
+ word-break: break-word;
2034
+ font-family: var(--mono);
2035
+ }
2036
+ .detail-panel-section {
2037
+ margin-top: 12px;
2038
+ padding-top: 12px;
2039
+ border-top: 1px solid var(--border);
2040
+ }
2041
+ .detail-panel-section-title {
2042
+ font-size: 11px;
2043
+ font-weight: 700;
2044
+ text-transform: uppercase;
2045
+ letter-spacing: 0.5px;
2046
+ color: var(--muted);
2047
+ margin-bottom: 8px;
2048
+ }
2049
+ .detail-panel-comment {
2050
+ font-size: 12px;
2051
+ color: var(--text);
2052
+ padding: 6px 10px;
2053
+ background: var(--bg2);
2054
+ border-radius: 6px;
2055
+ margin-bottom: 4px;
2056
+ display: flex;
2057
+ flex-direction: column;
2058
+ gap: 2px;
2059
+ }
2060
+ .detail-panel-comment-date {
2061
+ font-size: 10px;
2062
+ color: var(--muted);
2063
+ font-family: var(--mono);
2064
+ }
2065
+ @keyframes fadeIn {
2066
+ from { opacity: 0; }
2067
+ to { opacity: 1; }
2068
+ }
2069
+