1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Started vueifying tag system

This commit is contained in:
Dan Brown
2017-08-10 20:11:25 +01:00
parent ab07f7df6c
commit f338dbe3f8
7 changed files with 101 additions and 83 deletions

View File

@@ -226,7 +226,7 @@
width: 100%;
min-width: 50px;
}
.tags td {
.tags td, .tag-table > div > div > div {
padding-right: $-s;
padding-top: $-s;
position: relative;

View File

@@ -67,4 +67,17 @@ table.file-table {
.ui-sortable-helper {
display: table;
}
}
.fake-table {
display: table;
> div {
display: table-row-group;
}
> div > div {
display: table-row;
}
> div > div > div {
display: table-cell;
}
}