File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 12
12
.modai-generate : hover {
13
13
transform : rotate (20deg );
14
14
}
15
+
16
+ .modai-history_prev , .modai-history_next {
17
+ all : unset;
18
+ display : inline-block;
19
+ cursor : pointer;
20
+ }
Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ Ext.onReady(function() {
99
99
100
100
const createHistoryNav = ( field , fieldName ) => {
101
101
const prevButton = document . createElement ( 'button' ) ;
102
+ prevButton . type = 'button' ;
103
+ prevButton . title = 'Prev' ;
104
+ prevButton . className = 'modai-history_prev' ;
102
105
prevButton . disable = ( ) => {
103
106
prevButton . disabled = true ;
104
107
}
@@ -111,6 +114,9 @@ Ext.onReady(function() {
111
114
} ) ;
112
115
113
116
const nextButton = document . createElement ( 'button' ) ;
117
+ nextButton . type = 'button' ;
118
+ nextButton . title = 'Next' ;
119
+ nextButton . className = 'modai-history_next' ;
114
120
nextButton . disable = ( ) => {
115
121
nextButton . disabled = true ;
116
122
}
You can’t perform that action at this time.
0 commit comments