diff --git a/dist/layui-theme-dark-legacy.css b/dist/layui-theme-dark-legacy.css index 63add2c..c11a7fe 100644 --- a/dist/layui-theme-dark-legacy.css +++ b/dist/layui-theme-dark-legacy.css @@ -573,6 +573,7 @@ body .layui-util-face .layui-layer-content{background-color: #373739;color:rgba( :root .layui-laydate-shortcut>li:hover{filter: none\9 } .laydate-time-list li ol{border:1px solid #484849} +.laydate-time-list>li:hover{background: 0 0;} .layui-laydate-content .laydate-day-next{color: rgba(255,255,255,.3)} .layui-laydate-content .laydate-day-prev{color: rgba(255,255,255,.3)} .layui-laydate-linkage .laydate-selected.laydate-day-next>div{background-color: #373739!important} diff --git a/dist/layui-theme-dark-tiny.css b/dist/layui-theme-dark-tiny.css index 0d24064..d73c590 100644 --- a/dist/layui-theme-dark-tiny.css +++ b/dist/layui-theme-dark-tiny.css @@ -388,6 +388,7 @@ body .layui-util-face .layui-layer-content{background-color: #373739;color:rgba( .layui-laydate-list li:hover{background-color: rgba(255,255,255,.08);color: rgba(255,255,255,.7)} .layui-laydate-shortcut>li:hover{background-color: rgba(255,255,255,.08);color: rgba(255,255,255,.7)} .laydate-time-list li ol{border:1px solid #484849} +.laydate-time-list>li:hover{background: 0 0;} .layui-laydate-content .laydate-day-next{color: rgba(255,255,255,.3)} .layui-laydate-content .laydate-day-prev{color: rgba(255,255,255,.3)} .layui-laydate-linkage .laydate-selected.laydate-day-next>div{background-color: #373739!important} diff --git a/dist/layui-theme-dark.css b/dist/layui-theme-dark.css index 8147464..9bb8f21 100644 --- a/dist/layui-theme-dark.css +++ b/dist/layui-theme-dark.css @@ -597,6 +597,7 @@ body .layui-util-face .layui-layer-content{background-color: var(--lay-color-bg- .layui-laydate-linkage .laydate-selected:hover>div{background-color:var(--lay-color-green-4)!important} .layui-laydate-content td>div:hover,.layui-laydate-list li:hover,.layui-laydate-shortcut>li:hover{background-color: var(--lay-color-fill-2);color: var(--lay-color-text-2)} .laydate-time-list li ol{border:1px solid var(--lay-color-border-2)} +.laydate-time-list>li:hover{background: 0 0;} .layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color: var(--lay-color-text-4)} .layui-laydate-linkage .laydate-selected.laydate-day-next>div,.layui-laydate-linkage .laydate-selected.laydate-day-prev>div{background-color: var(--lay-color-bg-5)!important} .layui-laydate-footer{border-top:1px solid var(--lay-color-border-2)} diff --git a/docs/themes.json b/docs/themes.json index 2b37ee0..0f09267 100644 --- a/docs/themes.json +++ b/docs/themes.json @@ -161,7 +161,10 @@ "--lay-color-fill-3": "rgba(255,255,255,.12)", "--lay-color-fill-4": "rgba(255,255,255,.16)", "--lay-color-hover": "var(--lay-color-fill-3)", - "--lay-color-active": "var(--lay-color-fill-3)" + "--lay-color-active": "var(--lay-color-fill-3)", + "--lay-shadow-1": "0 4px 6px rgba(0, 0, 0, 6%), 0 1px 10px rgba(0, 0, 0, 8%), 0 2px 4px rgba(0, 0, 0, 12%)", + "--lay-shadow-2": "0 8px 10px rgba(0, 0, 0, 12%), 0 3px 14px rgba(0, 0, 0, 10%), 0 5px 5px rgba(0, 0, 0, 16%)", + "--lay-shadow-3": "0 16px 24px rgba(0, 0, 0, 14%), 0 6px 30px rgba(0, 0, 0, 12%), 0 8px 10px rgba(0, 0, 0, 20%)" }, "ColorPaletteDark": { "--lay-color-red-1": "#4D0800", diff --git a/src/override.css b/src/override.css index a145a00..1199bcb 100644 --- a/src/override.css +++ b/src/override.css @@ -395,6 +395,7 @@ body .layui-util-face .layui-layer-content{background-color: var(--lay-color-bg- .layui-laydate-linkage .laydate-selected:hover>div{background-color:var(--lay-color-green-4)!important} .layui-laydate-content td>div:hover,.layui-laydate-list li:hover,.layui-laydate-shortcut>li:hover{background-color: var(--lay-color-fill-2);color: var(--lay-color-text-2)} .laydate-time-list li ol{border:1px solid var(--lay-color-border-2)} +.laydate-time-list>li:hover{background: 0 0;} .layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color: var(--lay-color-text-4)} .layui-laydate-linkage .laydate-selected.laydate-day-next>div,.layui-laydate-linkage .laydate-selected.laydate-day-prev>div{background-color: var(--lay-color-bg-5)!important} .layui-laydate-footer{border-top:1px solid var(--lay-color-border-2)}