diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..bea9310ac --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +@getodk:registry=http://localhost:4873 \ No newline at end of file diff --git a/src/assets/scss/app.scss b/src/assets/scss/app.scss index 4fe0de654..3abffbc52 100644 --- a/src/assets/scss/app.scss +++ b/src/assets/scss/app.scss @@ -336,7 +336,17 @@ a { > .btn-default + .btn-default { border-left: 1px solid #ccc; } } +.btn-outlined { + background-color: #fff; + color: $color-action-background; + border: 1px solid $color-action-background; + &:hover, &:focus, &:active:focus { + color: #fff; + background-color: $color-action-background; + &[aria-disabled="true"], &.disabled, fieldset[disabled] & { background-color: #ddd; } + } +} //////////////////////////////////////////////////////////////////////////////// // DROPDOWN MENUS @@ -535,6 +545,7 @@ select { .icon-filter { color: #999; margin-right: $margin-right-icon; + font-size: 20px; } } @@ -927,4 +938,30 @@ becomes more complicated. .odk-form :not(svg|*) { all: revert; +} + +//////////////////////////////////////////////////////////////////////////////// +// The action bar shown above the data table + +.table-actions-bar { + background-color: $color-subpanel-background; + padding: 10px 20px; + + .form-inline { + margin-bottom: 0; + padding-bottom: 0; + } + + .form-label { + height: auto; + cursor: pointer; + } + + .form-group .form-control { + border-bottom: none; + } + + .form-group + .form-group { + margin-left: 30px; + } } \ No newline at end of file diff --git a/src/components/audit/filters.vue b/src/components/audit/filters.vue index a0a42a7d3..7ec4cc494 100644 --- a/src/components/audit/filters.vue +++ b/src/components/audit/filters.vue @@ -12,12 +12,12 @@ except according to the terms contained in the LICENSE file. diff --git a/src/components/audit/filters/action.vue b/src/components/audit/filters/action.vue index 0047acd69..f5c7f5708 100644 --- a/src/components/audit/filters/action.vue +++ b/src/components/audit/filters/action.vue @@ -10,8 +10,8 @@ including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. -->