download.jqueryui.com icon indicating copy to clipboard operation
download.jqueryui.com copied to clipboard

Themes: Start, Trontastic, Vader

Open ferda-mravenec opened this issue 5 years ago • 3 comments

Yesterday I downloaded all themes. This was first time I use themes. For these particular schemes I have entered the CSS Scope as:

  1. "start"
  2. "Trontastic"
  3. "Vader" I have also downloaded the rest of themes. Today I have corrected the generated .css files to its correct scope name as section.start, section.trontastic and section.Vader.

Now because this was made automaticly, I got incorrect results number. So I have made regex to find that odds in files.

Lets start with: jquery-ui.css #214-215: /* no icon support for input elements */ inputstart .ui-button.ui-button-icon-only { text-indent: 0; }

#247-251 inputstart .ui-button::-moz-focus-inner, buttonstart .ui-button::-moz-focus-inner { border: 0; padding: 0; } What is the inpustart and buttonstart tags?

For more mistakes seek for these words: astart a:linkstart a:visitedstart etc.

trontastic and vader has the sameproblems like "inputtrontastic"

Now I have downloaded the start them again this time with "section.start" scope

It's still like: /* no icon support for input elements */ inputstart .ui-button.ui-button-icon-only { text-indent: 0; }

ferda-mravenec avatar Dec 16 '20 11:12 ferda-mravenec

Thanks for the report. I think this is written in a way that doesn't really work with elements but with classes so you need to prepend a dot to the provided name. @fnagel do you have any insights here?

mgol avatar Dec 16 '20 20:12 mgol

Mhhhh. As far as I know, you are right. You need to use something like .my-selector as the scope.

Regarding the input .ui-button.ui-button-icon-only rule, I assume there is an glitch in the logic, as the scope should be a prefix, not a selector for the input element.

fnagel avatar Dec 16 '20 21:12 fnagel

I have corrected the css files as you can find in my ferda-mravenec/ui repo

ferda-mravenec avatar Dec 17 '20 15:12 ferda-mravenec