Are there any third-party jQuery user interface themes?

I'm a little tired of the jQuery user interface themes.

Are there any free third party themes that look a little smooth?

+6
source share
5 answers

One option that blends with my personal style is Aristo for the jQuery user interface!

See link Link!

Watch the Demo!

Watch GitHub!

However, the themes provided by jQuery UI ThemeRoller were intended only to enable users to create their own theme.

+2
source

Or take the standard jquery-ui.css and fill in the parts that apply to you, for example. if you only use tabs then just take all the css tabs or more if you use several aspects. For example, if you just use a tab, take this small section from

.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } .ui-tabs .ui-tabs-hide { display: none !important; } 

and then just change the style as you please.

+2
source
0
source

Twitter has released something called bootstrap, which will help you neatly arrange the elements on the screen for different screen sizes, which are automatically adjusted!. As you need a theme for slicker. Try boot twitter

0
source

Try Wijmo. They have few good jquery ui themes.

http://wijmo.com/theming/

0
source

Source: https://habr.com/ru/post/891980/


All Articles