Discussion on Scutum - Professional Material Design UIkit Admin Template

Discussion on Scutum - Professional Material Design UIkit Admin Template

By
Cart 683 sales
Well Documented

tzd supports this item

Supported

This author's response time can be up to 2 business days.

131 comments found.

Possible to collapse all / a sub-menu header when a main-menu header is clicked?

What do you mean by ‘main-menu header’? Uppercased header eg. ‘APPLICATIONS’ or eg. ‘Components’?

In the demo say I expand Components menu, then I click Chat menu, how to collapse Components menu (or all expanded menus) when using Ajax (so no page reload)?

Hi, to close all expanded menus you can use this code
$('.sc-js-submenu-trigger.sc-section-active').children('a').trigger('click')

Could you upgrade TinyMCE to latest for mobile support? Thanks!

Hi, I’ll add your suggestion to todo list. Thank you

Sounds great, thanks.

I’ve found the screen overlay you use in the mailbox example and have started using it with a spinner when I process ajax post backs.

However, it doesn’t cover the left-hand main menu; is this intentional?

If I increase the overlay z-index to cover the menu it appears on top of the spinner.

Hi, this overlay is mainly used for the page content (mailbox example). In next release I’ll include separate example with this overlay component (page content overlay, whole page overlay, overlay with the spinner etc.)

Sounds great, thanks.

Hi, is there a way to have “help” text under items in a dropdown as per Facebook?

https://ibb.co/M1CXgM4
Hi, sorry for the late reply. Please try this code
<div data-uk-dropdown>
  <ul class="uk-nav uk-dropdown-nav">
    <li>
      <a href="#">
        Hide post
        <small class="uk-display-block uk-text-muted">See fewer posts like this.</small>
      </a>
    </li>
    ...
  </ul>
</div>

Thanks, awesome support as always!

On pages like the chat example could you add a way to hide the off canvas on small screens when a list item is clicked?

It seems that this is already possible but not clearly documented, you can use custom class to close offcanvas like this
data-uk-offcanvas="selClose: .my-close-class" 
// link in offcanvas 
<a href="#" class="my-close-class">Link</a>
https://github.com/uikit/uikit/issues/4001#issuecomment-597120697

Does the colorpicker support choosing / entering a custom color?

Hi, yes, you can set it like this
data-sc-colorpicker='{ "pallete": ["#ccc", "#ddd", "#000"]}'
I know that word “pallete” is wrong, it should be “palette” but for now please use this wrong version ;) I’ll fix that in next release

Thanks, I saw that settings, however I was thinking from the user perspective. If they need a color that’s not in the palette they can choose from a picker, enter a hex value, etc.

It’s not possible with this colorpicker.
If you need more powerfull colorpicker please check this plugin https://seballot.github.io/spectrum

Hi Tomek, could please add a dark theme and an accessible theme to the Scutum to-do list? Thanks!

Hi, thank you for your suggestions, I’ll add them to todo list.

How could I put a scrollable div in a card column without making the whole card contents scroll?

Yes, but it scrolls all the columns in the card, not just the contents in the scrollable div.

You can put <div class="uk-height-medium sc-js-scrollable"></div> anywhere you want. Please check the code in my previous comment.

Yes, I tried it and the whole card scrolls. Odd, I’ll try and adjust one of your sample pages and report back. Thanks as always.

How to replace logo in header with text heading?

Hi, please try this code
<h5 class="uk-margin-remove"><a href="dashboard-v1.html" class="md-color-white">Scutum</a></h5>

Thanks for the reply, however with long text it causes unsightly wrapping and pushes the search bar over, etc.

Is there any way to have a text heading which truncates and still doesn’t push search, icons, etc. over?

Hi, please try this code
<div class="uk-navbar-left nav-overlay-small uk-margin-right uk-navbar-aside uk-flex">
    <a href="#" id="sc-sidebar-main-toggle"><i class="mdi mdi-backburger sc-menu-close"></i><i class="mdi mdi-menu sc-menu-open"></i></a>
    <div class="uk-visible@s uk-flex-1 uk-overflow-hidden">
        <h5 class="uk-margin-remove uk-text-truncate md-color-white">
            <a href="dashboard-v1.html" class="md-color-white">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis, pariatur!</a>
        </h5>
    </div>
</div>

Thanks for adding sc-uk-dropdown-close, however it only checks for uk-dropdown. Please could it also check for / close uk-dropdown-small?

Hi, .uk-dropdown class is also added for the small dropdowns so there is no need to check for .uk-dropdown-small class. Please check
<div class="uk-inline">
    <button class="sc-button sc-button-outline" type="button">small</button>
    <div class="uk-dropdown-small" data-uk-dropdown="pos: top-left;delay-hide: 100">
        <ul class="uk-nav uk-dropdown-nav">
            <li><a href="#">Item</a></li>
            <li><a href="#">Item</a></li>
            <li class="uk-nav-header">Header</li>
            <li><a href="#" class="sc-uk-dropdown-close">Close</a></li>
            <li><a href="#">Item</a></li>
            <li class="uk-nav-divider"></li>
            <li><a href="#">Item</a></li>
        </ul>
    </div>
</div>

Hi Tomek! How would I add a checkbox to the left and a dropdown to the right of the avatar on the Contact List page? Trying to achieve something similar to the contact list(s) in Altair. Thanks!

Hi, I can’t reproduce this issue. On the contact list dropdown appears over the top. Please send me a reduced HTML code, I’ll check what’s wrong.

Hi, I’m using an expanded header layout which causes the issue. Just use <html lang=”en” class=”sc-card-fixed sc-header-expanded”> in the pages-contact_list.html example and you’ll see the popup (above code) is within the card. The sc-card-fixed class causes the issue as I’m showing cards within a fixed layout card.

Hi, please replace ‘sc-card-fixed’ with ‘sc-page-fixed’ and add ‘class=”uk-height-1-1” data-sc-scrollbar’ to id=”sc-page-content”
  <div id="sc-page-content" class="uk-height-1-1" data-sc-scrollbar>

Thanks for adding sc-uk-dropdown-close, however it only checks for uk-dropdown. Please could it also check for / close uk-dropdown-small?

Any Scutum plans or suggestions for an image upload with preview as per the Altair avatar?

Hi, to make sc-top-bar sticky add data-uk-sticky="offset:48"
<div id="sc-page-top-bar" class="sc-top-bar" data-uk-sticky="offset:48">...</div>

I’ll add image upload with preview to todo list for Scutum. Thank you for your suggestion.

Thanks as always Tomek! For the image upload, a simple crop / square avatar selection as per Facebook would be great too.

On my android mobile phone (version 9) the header is not fixed and goes off the page with scrolling. It is fixed on desktop (windows 10.)

How can I get Scutum to have the header fixed in all situations?

Hi, to have the header fixed in all situations please open components/Header.vue and in mounted hook set options to {}
mounted () {
  // sticky header
  var options = {};
  UIkit.sticky(this.$refs.header, options);
}
Here you can find all the options for sticky component https://getuikit.com/docs/sticky#component-options

The “car rental” example form has a blue “book now” button. How do i change all buttons globally and the header background (lol, that should be easier) from the green to this same hue of blue across the scutum?

Hi, it’s quite easy to change colors in Scutum Admin
1.open assets/scss/common/_variables_mixins.scss and change$_theme-color to blue. After that your header and primary button will be blue but if you want the exact hue of the blue color (600) please do the next steps
2. open assets/scss/partials/_header.scss and change .uk-navbar background to $theme-color
#sc-header {
  ...    
  .uk-navbar {
    ...
   background: $theme-color;
  }
  ...
3. open assets/scss/components/_buttons.scss and change .sc-button-primary background to $theme-color
.sc-button {
  ...
  &-primary {
    @include buttonVariant {
      background: $theme-color;
    }
  }
  ...    

Hi Tomek, do you know how to add map marker infowindows onclick to Markers demo?

Hi, please check this example how to show Infowindow on Marker click https://github.com/xkjyeah/vue-google-maps/blob/vue2/examples/infowindow.html

Hi. If you click on the “Booking form” under Form Examples and then click the menu again, menu displays under the booking form component rather than first erasing it (destroying the component?) why is this?

HI, it seems that inline calendar has higher z-index than any other component on the page. It will be fixed in next release. Thank you for the info.

Great. Pls point me to where exactly the zindex can be changed

Open assets/scss/plugins/daterangepicker.scss and change
.date-picker-wrapper {
  ...
  z-index: $z-index-sidebar + 50;
}
to
.date-picker-wrapper {
  ...
  &:not(.inline-wrapper) {
    z-index: $z-index-sidebar + 50;
  }
}

Hi Tomek, this is not really finished: Add new task function in Task Board Is the release up to date, or did you forget to push? ;) Never mind. Keep up the great work!

Hi, this feature has been added to Scutum Template in latest release, please try to click on ‘Add Card’ in dropdown menu. Modal with the input fields should open, after filling the data click on ‘Add card’. New task should be added at the bottom of the column. There is no saving to db or cache but this functionality can be easilly added.

Right, thank you. My confusion was after clicking plus button. But with ‘Add Card ’ everything works as expected.

I’m considering moving from Altair to Scutum but I see Scutum doesn’t have a speed dial FAB? Any reason why you no longer have a speed dial button or can you add one to Scutum? Thanks!

Hi, send me the CSS and HTML. I’ll take a look.

Thanks Tomek, I’m just trying to use a uikit offcanvas but have its width be 50% on large screens and 100% on small screens. But when I used the HTML / CSS you posted above the off canvas appeared with a really small width.

Hi, sorry for the late reply. Please check in chrome web developer if custom styles for this offcanvas are aplied (mobile/desktop version). You can also try to put this styles at the bottom of the stylesheet, maybe styles for offcanvas are overwritten somewhere else.

Hi there, have you used vuex for state management? Please let us know, we are very interested about this template. Thanks.

Hi, yes, I have used vuex (modules mode) for state managament in Scutum Admin. https://nuxtjs.org/guide/vuex-store/#modules-mode

Hi, I got your email, thanks for response. I couldn’t get the template to install despite following the documentation. I am not extracting the component, I would like the whole page to work. Can you direct me on how to make the template work. Many thanks.

Hi, I’m not sure what is not working for you? Please send me more info.
When you extract the downloaded package please open admin/html/dist/pages-task_board.html
Is it working for you? Do you have a errors in js console? If you are talking about the commands in dropdown (Add Card, Copy List …), they are not working. Like I said before, Scutum Admin is a template, not fully functional application, if you need this functions you need to add them by yourself.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey