File tree Expand file tree Collapse file tree 8 files changed +71
-60
lines changed Expand file tree Collapse file tree 8 files changed +71
-60
lines changed Original file line number Diff line number Diff line change 1
- button {
2
- & .button {
3
- background-color : $button_color ;
1
+ .button {
2
+ background-color : $button_color ;
3
+ span {
4
+ color : $color_white ;
5
+ font-weight : normal ;
6
+ font-size : small ;
7
+ }
8
+ & .cancel {
4
9
span {
5
- color : $color_white ;
6
- font-weight : normal ;
7
- font-size : small ;
8
- }
9
- & .cancel {
10
- span {
11
- color : white ;
12
- }
13
- background-color : $color_cream !important ;
14
- }
15
- & .upload {
16
- background-color : $color_teal !important ;
17
- }
18
- & .warning {
19
- background-color : $color_warning !important ;
20
- span .v-btn__content {
21
- color : $color_white !important ;
22
- }
23
- }
24
- & .delete {
25
- background-color : red !important ;
26
- }
27
- & .error {
28
- background-color : $color_error !important ;
10
+ color : white ;
29
11
}
30
- i {
31
- font-weight : bold ;
12
+ background-color : $color_cream !important ;
13
+ }
14
+ & .upload {
15
+ background-color : $color_teal !important ;
16
+ }
17
+ & .warning {
18
+ background-color : $color_warning !important ;
19
+ span .v-btn__content {
20
+ color : $color_white !important ;
32
21
}
33
22
}
23
+ & .delete {
24
+ background-color : red !important ;
25
+ }
26
+ & .error {
27
+ background-color : $color_error !important ;
28
+ }
29
+ i {
30
+ font-weight : bold ;
31
+ }
34
32
}
Original file line number Diff line number Diff line change 1
- $color_primary : #2f4454 !global ;
1
+ $color_primary : #2f4454 ;
2
2
$color_accent : #000000 ;
3
3
$color_secondary : #ffffff ;
4
4
$color_success : #4caf50 ;
@@ -10,10 +10,11 @@ $color_milky: #fdfff5;
10
10
$color_teal : #00897b ;
11
11
$color_whitish : #f5f5f5 ;
12
12
$color_dlue : #303edb ;
13
- $color_white : #ffffff !global ;
13
+ $color_white : #ffffff ;
14
14
$button_color : #2cb673 ;
15
15
$color_cream : #c67f43 ;
16
16
17
+ $button_color : #24a0ed ;
17
18
$color_drygreen : #2cb673 ;
18
19
19
20
@mixin whitecolor {
Original file line number Diff line number Diff line change @@ -1839,36 +1839,36 @@ th span {
1839
1839
overflow : hidden;
1840
1840
}
1841
1841
1842
- button .button {
1843
- background-color : # 2cb673 ;
1842
+ .button {
1843
+ background-color : # 24a0ed ;
1844
1844
}
1845
- button .button span {
1845
+ .button span {
1846
1846
color : # ffffff ;
1847
1847
font-weight : normal;
1848
1848
font-size : small;
1849
1849
}
1850
- button .button .cancel {
1850
+ .button .cancel {
1851
1851
background-color : # c67f43 !important ;
1852
1852
}
1853
- button .button .cancel span {
1853
+ .button .cancel span {
1854
1854
color : white;
1855
1855
}
1856
- button .button .upload {
1856
+ .button .upload {
1857
1857
background-color : # 00897b !important ;
1858
1858
}
1859
- button .button .warning {
1859
+ .button .warning {
1860
1860
background-color : # fb8c00 !important ;
1861
1861
}
1862
- button .button .warning span .v-btn__content {
1862
+ .button .warning span .v-btn__content {
1863
1863
color : # ffffff !important ;
1864
1864
}
1865
- button .button .delete {
1865
+ .button .delete {
1866
1866
background-color : red !important ;
1867
1867
}
1868
- button .button .error {
1868
+ .button .error {
1869
1869
background-color : # ff0000 !important ;
1870
1870
}
1871
- button .button i {
1871
+ .button i {
1872
1872
font-weight : bold;
1873
1873
}
1874
1874
Original file line number Diff line number Diff line change
1
+ @import " _colors" ;
1
2
@import " _fonts" ;
2
3
@import " _mixin" ;
3
4
@import " _body" ;
4
- @import " _colors" ;
5
5
@import " _breadcrumb" ;
6
6
@import " _cards" ;
7
7
@import " _theme" ;
Original file line number Diff line number Diff line change 15
15
@update:page =" updatePagination"
16
16
>
17
17
<template v-slot :top >
18
- <v-toolbar flat class =" primary" dark >
18
+ <v-toolbar flat color =" primary" >
19
19
<v-spacer ></v-spacer >
20
- <v-text-field
21
- v-model =" search"
22
- append-icon =" search"
23
- label =" Enter search text ..."
24
- single-line
25
- hide-details
26
- rounded
27
- filled
28
- height =" 40"
29
- ></v-text-field
30
- >  ;  ;
20
+ <v-col cols =" 12" md =" 3" >
21
+ <v-text-field
22
+ v-model =" search"
23
+ prepend-inner-icon =" mdi-magnify"
24
+ label =" Search group by name, id"
25
+ single-line
26
+ hide-details
27
+ outlined
28
+ filled
29
+ rounded
30
+ height =" 40"
31
+ dense
32
+ class =" search mr-2"
33
+ clearable
34
+ autocomplete =" off"
35
+ light
36
+ ></v-text-field >
37
+ </v-col >
31
38
32
39
<div v-if =" hasPermission('ALL_FUNCTIONS', 'CREATE_PATIENT')" >
33
- <v-btn x-large v-if =" isMdAndUp" class =" button" to =" /patients/add"
34
- ><v-icon >mdi-plus</v-icon
40
+ <v-btn
41
+ rounded
42
+ v-if =" isMdAndUp"
43
+ class =" button"
44
+ color =" button"
45
+ to =" /patients/add"
46
+ ><v-icon left >mdi-plus</v-icon
35
47
>{{ $t("label.button.btnnewpatient") }}</v-btn
36
48
>
37
49
<v-btn fab v-else class =" button" to =" /patients/add"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export default {
21
21
22
22
env : {
23
23
baseUrl : 'http://159.203.183.129:8080/api/' ,
24
- localUrl : 'http://localhost :8080/api/'
24
+ localUrl : 'http://192.168.1.45 :8080/api/'
25
25
} ,
26
26
27
27
// Global page headers (https://go.nuxtjs.dev/config-head)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export default (ctx) => {
35
35
teal : "#00897B" ,
36
36
whitish : "F5F5F5" ,
37
37
dlue : "#1520A6" ,
38
- button : "#02532b "
38
+ button : "#24a0ed "
39
39
}
40
40
41
41
} ,
You can’t perform that action at this time.
0 commit comments