Skip to content

Commit 9eb6d00

Browse files
authored
Merge pull request #56 from openclassify/mobile-responsive
css change
2 parents 8485213 + 637e9fe commit 9eb6d00

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

resources/css/theme.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3609,4 +3609,42 @@ color: {{ setting_value('visiosoft.theme.defaultadmin::input_placeholder_color')
36093609

36103610
.repeater-item-controls a i{
36113611
color: #fff !important;
3612+
}
3613+
3614+
.table th, .table td {
3615+
border: 0 !important;
3616+
border-bottom: 1px solid #E5E5E5 !important;
3617+
}
3618+
3619+
.status-led {
3620+
display: inline-block;
3621+
margin-right: 5px;
3622+
border-radius: 50%;
3623+
width: 10px;
3624+
height: 10px;
3625+
}
3626+
3627+
.table > thead > tr > th, .table > thead > tr > td > a, .table > tbody > tr > th > a, .table > tbody > tr > td > a, .table > tfoot > tr > th > a, .table > tfoot > tr > td > a, .table thead th a {
3628+
color: #000000 !important;
3629+
}
3630+
3631+
.table > tbody > tr > td {
3632+
color: #000000;
3633+
}
3634+
.priority-btn {
3635+
display: inline-block;
3636+
padding: 2px 10px;
3637+
border-radius: 5px;
3638+
font-size: 14px;
3639+
}
3640+
.priority-high-btn {
3641+
color: #F56666;
3642+
background-color: rgba(245, 102, 102, 0.1);
3643+
}
3644+
.priority-normal-btn {
3645+
color: #FFBB00;
3646+
background-color: rgba(255, 187, 0, 0.1);
3647+
}
3648+
.priority-low-btn {
3649+
background-color: #fafafa;
36123650
}

resources/views/layouts/default.twig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% include "theme::partials/metadata" %}
77
{% block styles %}{% endblock %}
88
</head>
9-
9+
{% block css %}{% endblock %}
1010
<body class="variant-{{ random(8) }}{{ locale().isRtl() ? ' rtl' }} display--{{ preference_value('visiosoft.theme.defaultadmin::display', 'default') }} sidebars--{{ preference_value('visiosoft.theme.defaultadmin::sidebars', 'default') }}"
1111
data-variants="8">
1212

@@ -42,5 +42,6 @@
4242
{% include "theme::partials/modals" %}
4343
</section>
4444
{% include "theme::partials/assets" %}
45+
{% block js %}{% endblock %}
4546
</body>
4647
</html>

0 commit comments

Comments
 (0)