Change Yahoo Blueprint application look&feel - mobile-website

Is it possible to modify the "bluish style" of a mobile application developed with Yahoo Blueprint ?
I would like to use at least my own colors.

Yes, you can unofficially change the page theme to one of many predefined themes. For instance:
<page style="collection" theme="black">
See the Blueprint developer forums for more info: http://developer.yahoo.net/forum/index.php?showtopic=5023

Related

SharePoint Online Change the look Theme not working

I am working with a site using the Microsoft Developer Program. I am able to use the new Change the look feature on modern Communication sites to adjust the theme.
I created a theme using Powershell
I created a Communicators site and selected the Custom theme and used a PowerShell cmdlet to set that site as the homepage. I am still able to change the theme on that site by going to Settings > Change the look > Theme. The default and custom theme appear in the menu to select.
I attempted to follow the instructions on creating a Site Design to test out the feature of potentially exploring site designs. I ran into some issues of the feature I was attempting to use was not supported yet. I did not create any site designs. I use the Get_SPOSiteDesign cmdlet and nothing is returned.
I then created another communications site. I was just going to build these one at a time since Site designs did not meet my goal. I wanted to change the theme to the Custom theme, I go to Settings > Change the look > Theme and it closes the Change the look menu in the panel and returns me to the Settings panel.
I am able to go to Settings > Change the look > Header, Navigation and Footer successfully. Only the Theme option causes this error. I am unable to change the theme.
I used a PowerShell cmdlet to ensure the themes were not hidden, Set-SPOHideDefaultThemes $false. This is set.
I then created a second, third a fourth Communications site (using the Topic, Showcase and Blank designs) and the same error above occurs not being able to access the theme menu.
I then created a Team site. I am able to access the Theme and change to the Custom theme or one of the default selections.
I need help as to why new Communication sites I create in my environment will not allow me to access the theme menu, but homesites and team site do allow this. What do I need to do to correct this?
I too am coming across the same issue. I have attempted it in difference browsers and in incognito to verify it wasn't an extension or browser specific issue. Have you discovered a resolution or opened a ticket yet?
We have the same issue on our tenant and have opened a ticket a MS support. They confirmed that this a bug and are going to solve it.
For now we have a workaround via PNP Powershell.
When you set the theme first via Set-PnPWebTheme -Theme "Custom Theme", the option to modify the theme via the browser works again.

Design of SAP Fiori/UI5 Application

I’m trying to develop my first SAP Fiori App. Now I have some question about themes and background. In my index.html sap_belize_plus is the selected theme. In the SAP Fiori Launchpad you can chose between different SAP themes.
Does the chosen theme in the Launchpad affect my app or will it be displayed exactly as
implemented (only belize theme)?
Should I do custom CSS?
I saw apps with the standard #EBEBEB background and others with the picture background. On what does this depend?
Thanks for your help!
Does the chosen theme in the Launchpad affect my app or will it be displayed exactly as implemented (only belize theme)?
Yes. Chosen theme from the Launchpad will be the one that will be used. (Not the one in your index.html)
Should I do custom CSS?
Ideally No. You should create a custom theme (start by copying the standard) and try to achieve your desired result with the theme. CSS should be your last resort.
I saw apps with the standard #EBEBEB background and others with the
picture background. On what does this depend?
This can be either due to custom CSS to due to the custom theme. You have to look into the 'Developer tools' to determine.
If you use the Fiori Launchpad (FLP) you have 2 options.
[Most common & recommended] Configure your tile to open the app calling the Component.js file
Configuring the tile to open the index.html file (UI5 standalone configutarion)
In option 1, the index.html file of your app is not used. It's the FLP the one who plays the role of index.html file, and the app is loaded into the ComponentContainer of the FLP using JS-based navigation (hash navigation). So, in a default app config, the theme you use in your FLP will be the one used in your app.
Besides you can configure which are the supported themes for your app in the descriptor file, setting the property
"supportedThemes": [
"sap_bluecrystal"
]
More info in this link
In option 2, the app will be opened in a new tab, calling the index.html file, so it will use the theme you configure in the index.html file.
In the most common & easy way, you apply your custom themes in the whole FLP and you configure your apps to use it.
I think you should start reading about Theme Designer before you start coding CSS
Furthermore if you want to add just a few CSS classes, read this

Changing the Language that is processed

I created a tutorial for the Aviary with Filepicker.io, now one of the users at my tutorial site want to know how to change the language as he is from a whole different country. My problem is I try to access the iframe though we can't because it is not the same origin. Anyone have any suggestions as how to change the language?
Ink Filepicker doesn't currently support internationalization. It's a highly requested feature.
Why not inject into the iframe after page load by locating the using jquery?

Theme Specific Wordpress Custom Fields

I'm currently in the process of building a wordpress multi-site for a client. I've completed aspect #1, which was creating Theme-1. Theme-1 was built utilizing excessive amounts of the AdvancedCustomFields PLUGIN.
I'm working to build Theme-2, this one is the primary theme that will be utilized for all of the sub-sites created through the multi-site option. The issue I'm having is that the AdvancedCustomFields are no longer an option, I need to build all of the customization into the functions.php file directly.
Is it possible to create custom fields through the theme directly - without utilizing a plugin?
I need the theme pages to have "Left Side" "Right Side" "Footer" as WYSIWYG editors. So if someone goes to create a new page all of these field settings are there by default.
Is this possible?
It's possible, using the wp_editor function to get the WYSIWYG functionality. See this question on the WordPress stackexchange site. It's demonstrated as a plugin, but you could just as easily put the code in your theme.

Embedding Google Docs (-like) functionality

I'm looking for a way to embed Google Docs itself--or a Google Docs-like real-time collaboration of text documents--into a web platform built with Vaadin on top of Google Web Toolkit. Currently our users won't be creating Google IDs and, ideally, we wouldn't need them to (if embedding Google Docs itself). Thanks in advance!
Could you embed the document in an iframe as shown here? (in 5.17.3 Browser Frames)
If you just need a text editor, another solution can be to embed tinymce within you GWT client:
http://tinymce.moxiecode.com
We did it on our project and it works perfectly