Skip to content

Commit 50c6c7f

Browse files
committed
fix styles
1 parent 3da4358 commit 50c6c7f

File tree

6 files changed

+24
-3
lines changed

6 files changed

+24
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# laravel-file-manager
1+
# laravel-file-manager (Frontend)
22

3-
> File manager for Laravel - front side on Vue.js
3+
> File manager for Laravel - Frontend - Vue.js
44
55
> Backend - Laravel 5 package - [alexusmai/laravel-file-manager](https://github.com/alexusmai/laravel-file-manager)
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laravel-file-manager",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "File manager for Laravel",
55
"keywords": [
66
"laravel",

src/FileManager.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,19 @@ export default {
162162
position: relative;
163163
height: 100%;
164164
padding: 1rem;
165+
background-color: white;
166+
167+
&:-moz-full-screen {
168+
background-color: white;
169+
}
170+
171+
&:-webkit-full-screen {
172+
background-color: white;
173+
}
174+
175+
&:fullscreen {
176+
background-color: white;
177+
}
165178
166179
.fm-body {
167180
height: 100%;

src/components/InfoBlock.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export default {
125125
126126
.text-right > span {
127127
padding-left: 0.5rem;
128+
cursor: pointer;
128129
}
129130
}
130131
</style>

src/components/manager/Manager.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export default {
3838

3939
<style lang="scss">
4040
.fm-content {
41+
height: 100%;
4142
padding-left: 1rem;
4243
4344
.fm-content-body {

src/components/modals/About.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
<dt class="col-3">{{ lang.modal.about.developer }}:</dt>
1717
<dd class="col-9">Aleksandr Manekin - alexusmai@gmail.com</dd>
1818

19+
<dt class="col-3">GitHub:</dt>
20+
<dd class="col-9">
21+
<a href="https://github.com/alexusmai/vue-laravel-file-manager" target="_blank" class="pr-3">Frontend</a>
22+
<a href="https://github.com/alexusmai/laravel-file-manager" target="_blank">Backend</a>
23+
</dd>
24+
1925
<dt class="col-3">{{ lang.modal.about.site }}:</dt>
2026
<dd class="col-9"><a href="http://webmai.ru/projects/file-manager" target="_blank">webmai.ru</a></dd>
2127
</dl>

0 commit comments

Comments
 (0)