Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tabulator-another-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
tabulator-another-web
Commits
4286fbcd
Commit
4286fbcd
authored
Jun 04, 2025
by
xiaoye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
be0d84ad
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
46 additions
and
32 deletions
+46
-32
src/pages/main.vue
src/pages/main.vue
+2
-10
src/pages/tabulator.vue
src/pages/tabulator.vue
+1
-1
src/style/page.scss
src/style/page.scss
+2
-21
src/style/style.scss
src/style/style.scss
+39
-0
src/style/tournament.scss
src/style/tournament.scss
+2
-0
No files found.
src/pages/main.vue
View file @
4286fbcd
...
@@ -41,28 +41,20 @@
...
@@ -41,28 +41,20 @@
</
script
>
</
script
>
<
style
scoped
lang =
'scss'
>
<
style
scoped
lang =
'scss'
>
@import
'../style/transition.scss'
;
@import
'../style/transition.scss'
;
@import
'../style/style.scss'
;
#main_page
{
#main_page
{
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
));
height
:
100%
;
min-height
:
100vh
;
width
:
100%
;
.background
{
.background
{
position
:
fixed
;
position
:
fixed
;
background
:
linear-gradient
(
to
right
,
rgb
(
134
,
239
,
172
)
,
rgb
(
59
,
130
,
246
)
,
rgb
(
147
,
51
,
234
));
width
:
100%
;
height
:
100vh
;
z-index
:
100
;
z-index
:
100
;
font-family
:
'Courier New'
,
monospace
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
align-items
:
center
;
align-items
:
center
;
margin
:
0
;
margin
:
0
;
.pic
{
.pic
{
color
:
white
;
white-space
:
pre
;
white-space
:
pre
;
line-height
:
1
;
line-height
:
1
;
letter-spacing
:
0
;
letter-spacing
:
0
;
font-size
:
12px
;
}
}
}
}
.Tabulator
{
.Tabulator
{
...
...
src/pages/tabulator.vue
View file @
4286fbcd
...
@@ -113,7 +113,6 @@
...
@@ -113,7 +113,6 @@
<transition
name =
'switch'
>
<transition
name =
'switch'
>
<uni-list
<uni-list
v-show =
'search.result.total > 0 && page.menu'
v-show =
'search.result.total > 0 && page.menu'
:class =
"
{ vertical : size.width
<
=
size
.
height
}"
>
>
<uni-list-item
<uni-list-item
id =
'list'
id =
'list'
...
@@ -485,4 +484,5 @@
...
@@ -485,4 +484,5 @@
<
style
scoped
lang =
'scss'
>
<
style
scoped
lang =
'scss'
>
@import
'../style/page.scss'
;
@import
'../style/page.scss'
;
@import
'../style/transition.scss'
;
@import
'../style/transition.scss'
;
@import
'../style/style.scss'
;
</
style
>
</
style
>
\ No newline at end of file
src/style/page.scss
View file @
4286fbcd
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
grid-template-columns
:
repeat
(
5
,
1fr
);
grid-template-columns
:
repeat
(
5
,
1fr
);
grid-template-rows
:
1fr
;
grid-template-rows
:
1fr
;
align-items
:
center
;
align-items
:
center
;
z-index
:
0
;
:deep
(
.uni-list
)
{
:deep
(
.uni-list
)
{
:hover
{
:hover
{
cursor
:
pointer
;
cursor
:
pointer
;
...
@@ -12,7 +13,7 @@
...
@@ -12,7 +13,7 @@
}
}
#really
{
#really
{
box-shadow
:
2px
2px
10px
rgba
(
0
,
0
,
0
,
0
.2
);
box-shadow
:
2px
2px
10px
rgba
(
0
,
0
,
0
,
0
.2
);
background-color
:
white
;
//
background-color: white;
position
:
fixed
;
position
:
fixed
;
width
:
100%
;
width
:
100%
;
z-index
:
1
;
z-index
:
1
;
...
@@ -70,20 +71,6 @@
...
@@ -70,20 +71,6 @@
}
}
}
}
button
{
background-color
:
white
;
color
:
#606266
;
border-radius
:
4px
;
white-space
:
nowrap
;
border
:
0
.02px
solid
#606266
;
transition
:
all
0
.3s
ease
;
&
:hover
{
color
:
#ecf5ff
;
background-color
:
#ecf5ff
;
border
:
0
.02px
solid
#409eff
;
}
}
.Pics
{
.Pics
{
position
:
fixed
;
position
:
fixed
;
z-index
:
2
;
z-index
:
2
;
...
@@ -102,10 +89,4 @@
...
@@ -102,10 +89,4 @@
}
}
}
}
}
}
.vertical
{
:deep
(
.uni-list-item
)
{
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
))
!
important
;
}
}
}
}
src/style/style.scss
0 → 100644
View file @
4286fbcd
.uni-list-item
,
.uni-list-chat
,
.uni-list
{
background
:
none
!
important
;
}
#really
{
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
));
}
#main_page
{
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
));
height
:
100%
;
min-height
:
100vh
;
width
:
100%
;
.background
{
// background: linear-gradient(to right, rgb(134, 239, 172), rgb(59, 130, 246), rgb(147, 51, 234));
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
));
width
:
100%
;
height
:
100vh
;
font-family
:
'Courier New'
,
monospace
;
.pic
{
color
:
rgb
(
0
,
70
,
28
);
font-size
:
12px
;
}
}
}
#page
{
button
{
background-color
:
white
;
border-radius
:
4px
;
white-space
:
nowrap
;
border
:
0
.02px
solid
white
;
transition
:
all
0
.3s
ease
;
&
:hover
{
background-color
:
rgb
(
254
,
245
,
245
);
border
:
0
.02px
solid
rgb
(
255
,
228
,
230
);
}
}
}
src/style/tournament.scss
View file @
4286fbcd
...
@@ -50,6 +50,8 @@
...
@@ -50,6 +50,8 @@
}
}
#header
{
#header
{
min-width
:
30%
;
min-width
:
30%
;
max-width
:
30%
;
text-overflow
:
ellipsis
;
}
}
#body
{
#body
{
&
:hover
{
&
:hover
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment