File tree 1 file changed +9
-13
lines changed
1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change 21
21
font-weight : 500 ;
22
22
}
23
23
24
- .nowrap {
25
- white-space : nowrap ;
26
- }
27
-
28
24
.text-indigo {
29
- color : #6610f2 ;
25
+ color : var ( --bs-indigo ) ;
30
26
}
31
27
32
28
.text-orange {
33
- color : #fd7e14 ;
29
+ color : var ( --bs-orange ) ;
34
30
}
35
31
36
- .bg-green {
37
- background-color : #28a745 ;
32
+ .bg-teal {
33
+ background-color : var ( --bs-teal ) ;
38
34
}
39
35
40
36
.bg-orange {
41
- background-color : #fd7e14 ;
37
+ background-color : var ( --bs-orange ) ;
42
38
}
43
39
</style >
44
40
</head >
87
83
</div >
88
84
89
85
<div class =" table-responsive" x-show =" loaded" x-cloak >
90
- <table class =" table table-sm" >
86
+ <table class =" table table-sm table-hover " >
91
87
<thead >
92
88
<tr class =" table-dark" >
93
89
<th x-show =" columns.method" >Method</th >
109
105
<td x-show =" columns.method" style =" width : 120px " >
110
106
<template x-for =" method in route.method" >
111
107
<span >
112
- <span class =" badge" x-bind:class =" getMethodColor(method)" x-text =" method" ></span >
108
+ <span class =" badge py-1 " x-bind:class =" getMethodColor(method)" x-text =" method" ></span >
113
109
</span >
114
110
</template >
115
111
</td >
116
112
<td class =" font-monospace" x-show =" columns.uri || columns.name" >
117
- <div class =" fw-medium nowrap" x-html =" stylizeUri(route.domain, route.uri)" x-show =" columns.uri" ></div >
113
+ <div class =" fw-medium text- nowrap" x-html =" stylizeUri(route.domain, route.uri)" x-show =" columns.uri" ></div >
118
114
<div x-text =" route.name" x-show =" columns.name" ></div >
119
115
</td >
120
116
<td class =" font-monospace" x-show =" columns.action || columns.middleware" >
214
210
215
211
getMethodColor : function (method ) {
216
212
return ' bg-' + ({
217
- get: ' green ' ,
213
+ get: ' teal ' ,
218
214
head: ' secondary' ,
219
215
options: ' info' ,
220
216
post: ' primary' ,
You can’t perform that action at this time.
0 commit comments