Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/build-modules-js/compilecss.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports.compile = (options, path) => {
`${RootPath}/templates/cassiopeia/scss/offline.scss`,
`${RootPath}/templates/cassiopeia/scss/template.scss`,
`${RootPath}/templates/cassiopeia/scss/template-rtl.scss`,
`${RootPath}/templates/cassiopeia/scss/system/searchtools/searchtools.scss`,
`${RootPath}/administrator/templates/atum/scss/template.scss`,
`${RootPath}/administrator/templates/atum/scss/template-rtl.scss`,
`${RootPath}/administrator/templates/atum/scss/system/searchtools/searchtools.scss`,
Expand Down
3 changes: 3 additions & 0 deletions language/en-GB/joomla.ini
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ POSTGRESQL="PostgreSQL"
SQLITE="SQLite"

; Search tools
JFILTER_OPTIONS="Filter Options"
JSEARCH_TOOLS="Search Tools"
JSEARCH_TOOLS_DESC="Filter the list items."
JSEARCH_TOOLS_ORDERING="Order by:"
JTABLE_OPTIONS="Table Options"
JTABLE_OPTIONS_ORDERING="Order by:"
1 change: 1 addition & 0 deletions templates/cassiopeia/images/select-bg-active-rtl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions templates/cassiopeia/images/select-bg-active.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions templates/cassiopeia/images/select-bg-rtl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions templates/cassiopeia/images/select-bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions templates/cassiopeia/joomla.asset.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@
"template.cassiopeia.rtl#style",
"template.cassiopeia#script"
]
},
{
"name": "searchtools",
"type": "style",
"uri": "system/searchtools/searchtools.min.css"
}
]
}
27 changes: 27 additions & 0 deletions templates/cassiopeia/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,18 @@ $list-group-bg: $white-offset;
// Custom form
$custom-select-bg: $white-offset;

// Custom form
$custom-select-indicator-padding: 3rem;
$custom-select-bg-size: 116rem;
$custom-select-indicator: url(../images/select-bg.svg);
$custom-select-indicator-rtl: url(../images/select-bg-rtl.svg);
$custom-select-indicator-active: url(../../../images/select-bg.svg);
$custom-select-indicator-active-rtl: url(../../../images/select-bg-rtl.svg);
$custom-select-background: $custom-select-indicator no-repeat right center / $custom-select-bg-size; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
$custom-select-background-rtl: $custom-select-indicator-rtl no-repeat left center / $custom-select-bg-size; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
$custom-select-bg-size-sm: 75rem;
$custom-select-multiple-padding-y: .3rem;

// Modals
$modal-header-height: 46px;

Expand All @@ -146,3 +158,18 @@ $badge-default-bg: #5e7082;
// Gutter
$grid-gutter-width: 15px !default;
$cassiopeia-grid-gutter: $grid-gutter-width;

// Z-Index list
$zindex-negative: -1;
$zindex-actions: auto;
$zindex-toolbar: 1000;
$zindex-sidebar: 1010;
$zindex-header: 1020;
$zindex-alerts: 1030;
$zindex-modal-backdrop: 1040;
$zindex-modal: 1050;
$zindex-popover: 1060;
$zindex-tooltip: 1070;
$zindex-mobile-bottom: 8000;
$zindex-mobile-toggle: 9999;
$zindex-mobile-menu: 9000;
35 changes: 35 additions & 0 deletions templates/cassiopeia/scss/blocks/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,38 @@ td .form-control {
.form-control-feedback {
display: block;
}

// set up hidden tooltip
[role="tooltip"]:not(.show) {
z-index: $zindex-tooltip;
display: none;
max-width: 100%;
padding: .25em;
margin: .25em;
color: $white;
background: $black;

[dir=ltr] & {
text-align: left;
}

[dir=rtl] & {
text-align: right;
}
}

// reveal associated tooltip on focus
:focus + [role="tooltip"],
:hover + [role="tooltip"] {
position: absolute;
display: block;
}

[id="filter[search]-desc"] {
bottom: 100%;
}

.container-popup [id="filter[search]-desc"] {
top: 100%;
bottom: auto;
}
Loading