Skip to content

Commit

Permalink
thusfar
Browse files Browse the repository at this point in the history
  • Loading branch information
bobmagicii committed Sep 17, 2024
1 parent 8a2c540 commit 468ac6e
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 2 deletions.
27 changes: 27 additions & 0 deletions app/www/themes/default/css/src/elements/dropsort.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

.atl-dropsort {

}

.atl-dropsort-item {
background-color: var(--theme-grey-lt);
color: var(--theme-black);
transition: opacity 200ms, background-color 200ms;
}

.atl-dropsort-item.droptarget {
background-color: var(--theme-red);
}

.atl-dropsort-item.droptarget a:link,
.atl-dropsort-item.droptarget a:visited {
color: var(--theme-white) !important;
}

.atl-dropsort-item.moved {
color: var(--theme-red);
}

.atl-dropsort-item-handle {
cursor:grab
}
35 changes: 33 additions & 2 deletions app/www/themes/default/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*//
@date 2024-09-14 01:28:45 UTC
@files 41 [
@date 2024-09-17 01:20:26 UTC
@files 42 [
"src\/imports.css",
"src\/main.css",
"src\/ext-bootstrap.css",
Expand Down Expand Up @@ -29,6 +29,7 @@
"src\/elements\/article.css",
"src\/elements\/blog.css",
"src\/elements\/collapser.css",
"src\/elements\/dropsort.css",
"src\/elements\/editor-html.css",
"src\/elements\/field-tag-search.css",
"src\/elements\/gallery.css",
Expand Down Expand Up @@ -2969,6 +2970,36 @@ is being used and then prefixing all these with that theme name, if i recall. */
transform: rotate(225deg);
}

/*//////////////////////////////////////////////////////////////////////////////
//// src/elements/dropsort.css ///////////////////////////////////////////////*/

.atl-dropsort {

}

.atl-dropsort-item {
background-color: var(--theme-grey-lt);
color: var(--theme-black);
transition: opacity 200ms, background-color 200ms;
}

.atl-dropsort-item.droptarget {
background-color: var(--theme-red);
}

.atl-dropsort-item.droptarget a:link,
.atl-dropsort-item.droptarget a:visited {
color: var(--theme-white) !important;
}

.atl-dropsort-item.moved {
color: var(--theme-red);
}

.atl-dropsort-item-handle {
cursor:grab
}

/*//////////////////////////////////////////////////////////////////////////////
//// src/elements/editor-html.css ////////////////////////////////////////////*/

Expand Down

0 comments on commit 468ac6e

Please sign in to comment.