-
-
- ![]()
-
-
- {{ row.data.attributes.name }}
- {{ row.data.attributes.email }}
-
+
+
|
@@ -73,6 +71,7 @@
+
+
diff --git a/resources/js/views/Auth/SignIn.vue b/resources/js/views/Auth/SignIn.vue
index cc94c51d..1f6ec866 100644
--- a/resources/js/views/Auth/SignIn.vue
+++ b/resources/js/views/Auth/SignIn.vue
@@ -86,8 +86,8 @@
return {
isLoading: false,
checkedAccount: undefined,
- loginPassword: '',
- loginEmail: '',
+ loginPassword: 'vuefilemanager',
+ loginEmail: 'howdy@hi5ve.digital',
}
},
methods: {
diff --git a/resources/sass/app.scss b/resources/sass/app.scss
index acc140c8..3931f065 100644
--- a/resources/sass/app.scss
+++ b/resources/sass/app.scss
@@ -106,7 +106,7 @@
&:hover {
svg {
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $theme;
}
}
@@ -120,7 +120,7 @@
margin-right: 12px;
line-height: 0;
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $text;
}
}
@@ -184,7 +184,7 @@
margin-right: 5px;
width: 20px;
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
@include transition(150ms);
}
}
@@ -194,7 +194,7 @@
&.is-current {
.folder-icon {
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $theme;
}
}
@@ -214,6 +214,35 @@
display: block;
}
+.table {
+ .action-icons {
+ white-space: nowrap;
+
+ a {
+ display: inline-block;
+ margin-left: 10px;
+
+ &:first-child {
+ margin-left: 0;
+ }
+ }
+
+ .icon {
+ cursor: pointer;
+
+ circle, path, line, polyline {
+ stroke: $text;
+ }
+
+ &.icon-trash {
+ circle, path, line, polyline {
+ stroke: $red;
+ }
+ }
+ }
+ }
+}
+
@media only screen and (max-width: 1024px) {
#single-page {
@@ -278,7 +307,7 @@
.icon {
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $dark_mode_text_primary;
}
}
@@ -290,7 +319,7 @@
.icon {
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $dark_mode_text_primary;
}
}
@@ -304,7 +333,7 @@
.icon {
- path, line, polyline, rect, circle {
+ path, line, polyline, rect, circle, ellipse {
stroke: $theme;
}
}
|