Merge branch 'master' of https://github.com/Budibase/budibase into feature/screen-route-select
This commit is contained in:
commit
c2b6b21427
|
@ -2,6 +2,7 @@ builder/*
|
||||||
.data/
|
.data/
|
||||||
.temp/
|
.temp/
|
||||||
packages/server/runtime_apps/
|
packages/server/runtime_apps/
|
||||||
|
.idea/
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
|
|
|
@ -5,3 +5,5 @@ Contributors
|
||||||
* Daniel Loudon - [@danbudi](https://github.com/marblekirby)
|
* Daniel Loudon - [@danbudi](https://github.com/marblekirby)
|
||||||
* Joe - [@joebudi](https://github.com/joebudi)
|
* Joe - [@joebudi](https://github.com/joebudi)
|
||||||
* Martin McKeaveney - [@shogunpurple](https://github.com/shogunpurple)
|
* Martin McKeaveney - [@shogunpurple](https://github.com/shogunpurple)
|
||||||
|
* Andrew Kingston - [@aptkingston](https://github.com/aptkingston)
|
||||||
|
* Michael Drury - [@mike12345567](https://github.com/mike12345567)
|
|
@ -195,6 +195,16 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-style: none;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 0;
|
||||||
|
background: transparent;
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--ink);
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
li:hover {
|
li:hover {
|
||||||
background-color: var(--grey-2);
|
background-color: var(--grey-2);
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,10 +109,10 @@
|
||||||
|
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
display: none;
|
display: none;
|
||||||
height: 24px;
|
|
||||||
width: 24px;
|
|
||||||
color: var(--ink);
|
color: var(--ink);
|
||||||
padding: 0px 5px;
|
padding: 0 5px;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background: rgba(0, 0, 0, 0);
|
background: rgba(0, 0, 0, 0);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -204,10 +204,10 @@
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
display: none;
|
display: none;
|
||||||
height: 24px;
|
|
||||||
width: 24px;
|
|
||||||
color: var(--ink);
|
color: var(--ink);
|
||||||
padding: 0px 5px;
|
padding: 0 5px;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background: rgba(0, 0, 0, 0);
|
background: rgba(0, 0, 0, 0);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
.root button {
|
.root button {
|
||||||
border-style: none;
|
border-style: none;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 5px;
|
padding: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: var(--ink);
|
color: var(--ink);
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
"gitHead": "284cceb9b703c38566c6e6363c022f79a08d5691",
|
"gitHead": "284cceb9b703c38566c6e6363c022f79a08d5691",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@beyonk/svelte-googlemaps": "^2.2.0",
|
"@beyonk/svelte-googlemaps": "^2.2.0",
|
||||||
|
"@budibase/bbui": "^1.29.3",
|
||||||
"britecharts": "^2.16.1",
|
"britecharts": "^2.16.1",
|
||||||
"d3-selection": "^1.4.2",
|
"d3-selection": "^1.4.2",
|
||||||
"fast-sort": "^2.2.0",
|
"fast-sort": "^2.2.0",
|
||||||
|
|
Loading…
Reference in New Issue