Get Theme Certified

Please post suggestions for improvement of Cinnamon on:
https://github.com/linuxmint/Cinnamon
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
User avatar
Paul_Vandenberg
Level 2
Level 2
Posts: 61
Joined: Thu Jul 26, 2007 9:11 pm
Location: Canada

Get Theme Certified

Post by Paul_Vandenberg »

Hi,

What is the procedure to get a theme certified for Cinnamon 1.6? I created a new White theme and would like to see it put in the 'certified for 1.6' category.

Thanks....Paul
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
abnvolk

Re: Get Theme Certified

Post by abnvolk »

It has to be approved by the devs, but you know, sometimes they are busy :)
You can change the title of it to show that it's ready for Cinnamon 1.6.
User avatar
Paul_Vandenberg
Level 2
Level 2
Posts: 61
Joined: Thu Jul 26, 2007 9:11 pm
Location: Canada

Re: Get Theme Certified

Post by Paul_Vandenberg »

OK...thanks. I was just wondering if I had to 'submit' it for certification.
bimsebasse

Re: Get Theme Certified

Post by bimsebasse »

Hi Paul, I've replied on your theme page. You need radiobuttons and checkbuttons, everything else is gravy :D

The easiest thing to do is to simply copy the buttons + the code that looks like this:

Code: Select all

.check-box CinnamonGenericContainer {
    spacing: .3em;
    height: 26px;
}

.check-box StBin,
.check-box:focus StBin {
    width: 20px;
    height: 20px;
    background-image: url("checkbox-off.svg");
}

.check-box:checked StBin {
    background-image: url("checkbox.svg");
}

.check-box:focus:checked StBin {
    background-image: url("checkbox-focused.svg");
}

.check-box StLabel {
    padding-top: 3px;
}

.radiobutton CinnamonGenericContainer {
    spacing: .3em;
    height: 26px;
}

.radiobutton StBin,
.radiobutton:focus StBin {
    width: 24px;
    height: 24px;
    background-image: url("radiobutton-off.svg");
}

.radiobutton:checked StBin,
.radiobutton:focus:checked StBin {
    background-image: url("radiobutton.svg");
}

.radiobutton StLabel {
padding-top: 4px;
}
... from a theme similar to yours (or any theme with the relevant image files + code). You can of course also do your own :D
Locked

Return to “Cinnamon”