Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
ecommerce-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
ecommerce-ui
Commits
33703c9e
Commit
33703c9e
authored
Jan 22, 2014
by
Sven Franck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed row highlighting on non-link cells
parent
a3355b08
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
css/themes.css
css/themes.css
+2
-2
js/erp5_loader.js
js/erp5_loader.js
+4
-0
No files found.
css/themes.css
View file @
33703c9e
...
...
@@ -731,8 +731,8 @@ html body div.ui-slider-track.ui-body-slapos-black .ui-btn-active,
html
.ui-page-theme-slapos-black
.ui-table-wrapper
.ui-btn
:active
,
html
.ui-page-theme-slapos-black
.ui-table-wrapper
.ui.btn.ui-btn-active
,
/* Table rows on hover */
html
table
.ui-table
tbody
tr
:hover
td
:not
(
.ui-no-result
),
html
table
.ui-table
tbody
tr
:hover
th
:not
(
.ui-no-result
),
html
table
.ui-table
tbody
tr
.linkable
:hover
td
:not
(
.ui-no-result
),
html
table
.ui-table
tbody
tr
.linkable
:hover
th
:not
(
.ui-no-result
),
/* Controlbar */
html
.ui-page-theme-slapos-black
.ui-controlbar
.ui-btn
:active
,
html
.ui-page-theme-slapos-black
.ui-controlbar
.ui-btn.ui-btn-active
,
...
...
js/erp5_loader.js
View file @
33703c9e
...
...
@@ -1464,6 +1464,7 @@
* @param {string} identifier
**/
"
download
"
:
function
(
obj
)
{
console
.
log
(
obj
)
util
.
error
(
"
Download: Not implemented.
"
);
},
...
...
@@ -4855,6 +4856,9 @@
}
}
}
if
(
spec
.
config
.
link
)
{
row
.
className
=
"
linkable
"
;
}
container
.
appendChild
(
row
);
}
return
container
;
...
...
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