Skip to content

Commit

Permalink
Merge branch 'feature/redesign-2' of https://github.com/rule110-io/su…
Browse files Browse the repository at this point in the history
…rge-ui into feature/redesign-2
  • Loading branch information
MutsiMutsi committed Jan 23, 2022
2 parents a181905 + 23ad333 commit bce7ac8
Show file tree
Hide file tree
Showing 67 changed files with 313 additions and 1,149 deletions.
Binary file modified appicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified appicon.psd
Binary file not shown.
Binary file modified documentation/img/surge1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified documentation/img/surge2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 0 additions & 11 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"vue-filter-pretty-bytes": "^0.1.5",
"vue-lodash": "^2.1.2",
"vue-moment": "^4.1.0",
"vue-range-component": "^1.0.3",
"vue-router": "^3.3.4",
"vue-slider-component": "^3.2.15",
"vue-tour": "^1.5.0",
Expand Down
73 changes: 73 additions & 0 deletions frontend/src/assets/icons/TablePlaceholderIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions frontend/src/assets/scss/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ body {
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}

input {
-webkit-user-select: text;
}
}

b {
Expand Down Expand Up @@ -288,12 +292,7 @@ th {
.table {
&__row {
&_active {
background: linear-gradient(
0deg,
rgba(10, 151, 149, 0.2),
rgba(10, 151, 149, 0.2)
),
#131416;
background: linear-gradient(0deg, rgba(10, 151, 149, 0.2), rgba(10, 151, 149, 0.2)), #131416;
background-blend-mode: normal;

td {
Expand Down
1 change: 1 addition & 0 deletions frontend/src/assets/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ $grey-light: #7e8084;
$grey-dark: #28282d;
$red: #eb5757;
$danger: #ff3d48;
$success: #48ff9c;
$black-light: rgba(255, 255, 255, 0.03);
$text-white: rgba(255, 255, 255, 0.8);
$modal-bg: rgba(33, 33, 35, 0.83);
Expand Down
21 changes: 20 additions & 1 deletion frontend/src/components/Button/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
&:disabled {
color: rgba($white, 0.2) !important;
cursor: not-allowed !important;
pointer-events: none;
background: initial !important;
border: 1px solid transparent !important;
}

&_size {
Expand Down Expand Up @@ -105,5 +106,23 @@
border: $border-primary;
}
}

&_transparent {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.2);
color: $white;

svg {
path {
stroke: $white;
}
}

&:hover {
color: $white;
background: $primary;
border: $border-primary;
}
}
}
}
52 changes: 0 additions & 52 deletions frontend/src/components/Controls/Switcher/Switcher.scss

This file was deleted.

45 changes: 0 additions & 45 deletions frontend/src/components/Controls/Switcher/Switcher.vue

This file was deleted.

3 changes: 3 additions & 0 deletions frontend/src/components/Dashboard/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<AddFileModal openModalEvent="openAddFileModal" />
<RemoveFileModal openModalEvent="openRemoveFileModal" />
<SettingsModal openModalEvent="openSettingsModal" />
<UnsubscribeTopicModal openModalEvent="openUnsubscribeTopicModal" />
</div>
</template>

Expand All @@ -28,6 +29,7 @@ import AddTopicModal from "@/components/Modals/AddTopicModal/AddTopicModal";
import AddFileModal from "@/components/Modals/AddFileModal/AddFileModal";
import RemoveFileModal from "@/components/Modals/RemoveFileModal/RemoveFileModal";
import SettingsModal from "@/components/Modals/SettingsModal/SettingsModal";
import UnsubscribeTopicModal from "@/components/Modals/UnsubscribeTopicModal/UnsubscribeTopicModal";
export default {
components: {
Expand All @@ -37,6 +39,7 @@ export default {
AddFileModal,
RemoveFileModal,
SettingsModal,
UnsubscribeTopicModal,
},
data: () => {
return {};
Expand Down
24 changes: 0 additions & 24 deletions frontend/src/components/File/FileAvatar/FileAvatar.scss

This file was deleted.

55 changes: 0 additions & 55 deletions frontend/src/components/File/FileAvatar/FileAvatar.vue

This file was deleted.

Loading

0 comments on commit bce7ac8

Please sign in to comment.