Skip to content

Commit

Permalink
Password icon
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyEdwards committed Mar 8, 2024
1 parent 6cd7038 commit d53c324
Showing 1 changed file with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,19 +123,36 @@ object DynamicCSS {
)
)

style(
"input.sameThemeText, textarea.sameThemeText", mapOf(
"border-bottom-style" to "solid",
"border-bottom-width" to "1px",
"border-radius" to "0",
)
)

style(
"input.sameThemeText:focus, textarea.sameThemeText:focus", mapOf(
"border-radius" to "0",
)
)
// style(
// "input.sameThemeText, textarea.sameThemeText", mapOf(
// "border-bottom-style" to "solid",
// "border-bottom-width" to "1px",
// "border-radius" to "0",
// )
// )
//
// style(
// "input.sameThemeText:focus, textarea.sameThemeText:focus", mapOf(
// "border-radius" to "0",
// )
// )
//
// style(
// "input:not(.mightTransition).editable.editable, textarea:not(.mightTransition).editable.editable, select:not(.mightTransition).editable.editable", mapOf(
// "border-bottom-color" to "currentColor",
// "border-bottom-width" to "1px",
// "border-bottom-style" to "solid",
// )
// )
//
// style(
// "input:not(.mightTransition).editable.editable:focus, textarea:not(.mightTransition).editable.editable:focus, select:not(.mightTransition).editable.editable:focus", mapOf(
// "border-bottom-color" to "currentColor",
// "border-bottom-width" to "2px",
// "border-bottom-style" to "solid",
// "outline" to "none",
// )
// )

style(
"input:focus textarea:focus", mapOf(
Expand Down Expand Up @@ -606,23 +623,6 @@ object DynamicCSS {
)
)

style(
"input:not(.mightTransition).editable.editable, textarea:not(.mightTransition).editable.editable, select:not(.mightTransition).editable.editable", mapOf(
"border-bottom-color" to "currentColor",
"border-bottom-width" to "1px",
"border-bottom-style" to "solid",
)
)

style(
"input:not(.mightTransition).editable.editable:focus, textarea:not(.mightTransition).editable.editable:focus, select:not(.mightTransition).editable.editable:focus", mapOf(
"border-bottom-color" to "currentColor",
"border-bottom-width" to "2px",
"border-bottom-style" to "solid",
"outline" to "none",
)
)

style(
"*", mapOf(
"scrollbar-color" to "#999 #0000",
Expand Down

0 comments on commit d53c324

Please sign in to comment.