Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
hubzilla
core
Commits
28ad60f8
Commit
28ad60f8
authored
Mar 28, 2017
by
Mario
Browse files
some fixes for latest bs-dev
parent
171b6a22
Changes
4
Hide whitespace changes
Inline
Side-by-side
view/css/bootstrap-red.css
View file @
28ad60f8
...
...
@@ -55,6 +55,9 @@ nav.navbar {
overflow
:
auto
;
}
.navbar-inverse
.navbar-toggler
{
color
:
rgba
(
255
,
255
,
255
,
1
);
}
/* nav overrides end */
.wall-item-tools
.dropdown-menu
{
...
...
view/theme/redbasic/css/narrow_navbar.css
View file @
28ad60f8
...
...
@@ -11,7 +11,7 @@
}
.contextual-help-content-open
{
top
:
2.
4
rem
;
top
:
2.
5
rem
;
}
aside
{
...
...
view/theme/redbasic/css/style.css
View file @
28ad60f8
...
...
@@ -191,7 +191,7 @@ nav {
.contextual-help-content-open
{
display
:
block
;
position
:
fixed
;
top
:
3.
2
5rem
;
top
:
3.
3
5rem
;
left
:
0px
;
width
:
100%
;
max-height
:
50%
;
...
...
view/theme/redbasic/js/redbasic.js
View file @
28ad60f8
...
...
@@ -3,6 +3,13 @@
*/
$
(
document
).
ready
(
function
()
{
//this is a hotfix to make collapsible bs panels work again. this needs fixing in templates.
$
(
'
a
'
).
on
(
'
click
'
,
function
(
e
)
{
if
(
$
(
this
).
data
(
'
toggle
'
)
==
'
collapse
'
)
{
e
.
preventDefault
();
}
});
// CSS3 calc() fallback (for unsupported browsers)
$
(
'
body
'
).
append
(
'
<div id="css3-calc" style="width: 10px; width: calc(10px + 10px); display: none;"></div>
'
);
if
(
$
(
'
#css3-calc
'
).
width
()
==
10
)
{
...
...
Write
Preview
Supports
Markdown
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