themes

jars are missing on `artifactory` server after installing primefaces all-themes

 ̄綄美尐妖づ 提交于 2020-01-20 02:16:08
问题 I am trying to follow http://primefaces.org/themes to get it working. All community themes are also available in "all-in-one" package. <dependency> <groupId>org.primefaces.themes</groupId> <artifactId>all-themes</artifactId> <version>1.0.10</version> </dependency> I added primefaces repository and have artifactory running. It says *.jar artifact missing. I can see directories of all themes on local maven repository. However, all jars are missing and can't find them on artifactory server

Responsive design on California Responsive BigCommerce template

非 Y 不嫁゛ 提交于 2020-01-17 12:42:24
问题 I am looking for some simple guidance for someone that can cope with most design basics but I am stuck in one area of my website design for findmethatwine.com Dektop site is working as we want it (always room to improve but hey). It is the responsive side in one area I am grappling with. The logo for the site when you reduce screen size to tablet or mobile the template responds. The issue is I want to float the logo over to the left of the screen (for mobile devices) so this gives us room to

JavaScript color highlighting error in VScode

荒凉一梦 提交于 2020-01-17 07:38:16
问题 I have fresh install of VScode editor (v.1.14.2). Doesn't have any installed extensions. I have problem with javaScript highlighting in very simple file. The same code in Sublime Text 3: Default VScode theme (Dark+), doesn't have this bug, and all function names and methods have the same colors. But many another themes (monokai and Abyss for example) have this bug/feature. I want to have for function names and methods the same color (line 10, 11, 13, 16). Ideally, all lines like in ST3 - blue

Emulate codePen twilight theme

倾然丶 夕夏残阳落幕 提交于 2020-01-17 02:20:29
问题 I'm trying to make sublime text to look like codepen.io twilight theme. I was able to copy it besides for some categories. I don't know what the name of the scope is. Here's an image with the different words I want to change. (The text from the image is JavaScript.) I want to change the purple underlined words to purple, and yellow to yellow. What are the keywords (scope names) for the words? 回答1: The yellow underlined items in your example are class names (a special case of variable name in

Magento product zoom extension not working in my custom theme

谁说我不能喝 提交于 2020-01-15 15:30:26
问题 I am using a custom theme in magento. Now I install a pluging for product zoom functionality . But the plugin is not working. Finally I found that the while installing the plugin, the files are saved in default theme directory, but I am using a custom theme(themeheros). To make the plugin working I cut and paste the app/design/frontend/default/default/layout/[extension_name].xml app/design/frontend/default/default/template/[extension_name]/* files to app/design/frontend/[your_interface]/[your

How to hide menu only on Home page wordpress

一笑奈何 提交于 2020-01-15 13:34:06
问题 I m using a one page theme. I would like to disable or choose not to show the menu on the home page. But when user scrolls down to the next page the menu should become fixed. I have removed the menu from the home page now, however i'm not able to get the menu to be fixed on top for the other pages. Please advice. 回答1: You can also go the CSS way. WordPress adds a class home to the body attribute in home page. You can target that particular attribute to hide the menu as shown below. .home

Wix Bootstrapper Won't Run When Using ThemeFile

二次信任 提交于 2020-01-15 03:33:13
问题 I have created a wix bootstrapper that runs fine on all computers when no theme file is used. If I use a theme file, it will run on my computer but not on anyone else's. <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" > <bal:WixStandardBootstrapperApplication LicenseFile="C:\eula.rtf" ThemeFile="C:\myTheme.xml" /> </BootstrapperApplicationRef> 回答1: First, look at the bundle log file on the other machines to see the error. Likely the message will indicate there

Allowing user selected Global Theme for winform app

本小妞迷上赌 提交于 2020-01-14 12:39:40
问题 I am using DevExpress controls in a winform app I am building for internal use. My app has about 30 forms in total and I am trying to figure out a way to allow my user's to select a theme. I have seen this mentioned here at SO multiple times in answers to other posts. I understand how the StyleController works, I believe, but what I am wondering is how I can use 1 Style controller for the whole app. Right now I am trying to create 1 StlyeController at the Shell form and then pass a reference

Difference between approches for setting DefaultStyleKey

南楼画角 提交于 2020-01-14 08:48:29
问题 I am creating a custom control(deriving from Control ) and want to define a default theme for the control. Previously all the custom controls I created, I have used static IntegerUpDown() { DefaultStyleKeyProperty.OverrideMetadata(typeof(IntegerUpDown), new FrameworkPropertyMetadata(typeof(IntegerUpDown))); } with this assembly attribute: [assembly: ThemeInfo(ResourceDictionaryLocation.SourceAssembly, ResourceDictionaryLocation.SourceAssembly)] Alternative approach to do this is (which I have

no orientation notification when translucent set

让人想犯罪 __ 提交于 2020-01-13 19:26:10
问题 Using phones that have android 2.1 & 2.2 installed, using the simplest case of a hello world app and add android:theme="@android:style/Theme.Translucent" to the activity in the android manifest to have the app be transparent, the app sticks as portrait only and won't rotate to landscape when the phone is rotated. Take the line out and the app rotates ok. This is verified by adding the override of onConfigurationChanged and putting a breakpoint in that routine. Brk hits when translucent isn't