-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: esx_menu_list update to version 1.0.0
- Loading branch information
1 parent
464c21c
commit e1937d2
Showing
8 changed files
with
593 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 32 additions & 33 deletions
65
server-data/resources/[esx]/esx_menu_list/html/css/app.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,55 @@ | ||
@font-face { | ||
font-family: bankgothic; | ||
src: url('../fonts/bankgothic.ttf'); | ||
font-family: bankgothic; | ||
src: url("../fonts/bankgothic.ttf"); | ||
} | ||
|
||
@font-face { | ||
font-family: pcdown; | ||
src: url('../fonts/pdown.ttf'); | ||
font-family: pcdown; | ||
src: url("../fonts/pdown.ttf"); | ||
} | ||
|
||
.menu { | ||
font-family: bankgothic; | ||
position: absolute; | ||
left: 50%; | ||
top: 40%; | ||
transform: translate(-50%, -50%); | ||
overflow-y: auto; | ||
max-height: 90%; | ||
font-family: bankgothic; | ||
position: absolute; | ||
left: 50%; | ||
top: 40%; | ||
transform: translate(-50%, -50%); | ||
overflow-y: auto; | ||
max-height: 90%; | ||
} | ||
|
||
.menu button { | ||
font-family: bankgothic; | ||
font-family: bankgothic; | ||
} | ||
|
||
.menu>table { | ||
border-collapse: separate; | ||
border-spacing: 0 5px; | ||
min-width: 400px; | ||
background: rgba(33, 33, 33, 0.0); | ||
.menu > table { | ||
border-collapse: separate; | ||
border-spacing: 0 5px; | ||
min-width: 400px; | ||
background: rgba(33, 33, 33, 0); | ||
} | ||
|
||
.menu>table>thead { | ||
background: rgba(10, 10, 10, 0.9); | ||
text-align: center; | ||
height: 20px; | ||
line-height: 20px; | ||
margin-bottom: 20px; | ||
color: #fff; | ||
.menu > table > thead { | ||
background: rgba(10, 10, 10, 0.9); | ||
text-align: center; | ||
height: 20px; | ||
line-height: 20px; | ||
margin-bottom: 20px; | ||
color: #fff; | ||
} | ||
|
||
.menu td { | ||
|
||
text-align: center; | ||
padding: 8px; | ||
margin: 20px; | ||
text-align: center; | ||
padding: 8px; | ||
margin: 20px; | ||
} | ||
|
||
.menu tbody tr:nth-child(even) { | ||
color: #fff; | ||
background: rgba(40, 40, 40, 0.8); | ||
color: #fff; | ||
background: rgba(40, 40, 40, 0.8); | ||
} | ||
|
||
.menu tbody tr:nth-child(odd) { | ||
color: #fff; | ||
background: rgba(40, 40, 40, 0.8); | ||
} | ||
color: #fff; | ||
background: rgba(40, 40, 40, 0.8); | ||
} |
Oops, something went wrong.